From dcb2889824472a7152dd3c6db37c558d932920d4 Mon Sep 17 00:00:00 2001 From: Eric F Date: Tue, 16 Jun 2026 06:30:08 -0400 Subject: [PATCH] fix: Use String(id) instead of Number(id) for charging station ID --- .../src/app/(authenticated)/charging-stations/[id]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/citrineos-core-main/apps/operator-ui/src/app/(authenticated)/charging-stations/[id]/page.tsx b/tools/citrineos-core-main/apps/operator-ui/src/app/(authenticated)/charging-stations/[id]/page.tsx index ba6f472..567b551 100644 --- a/tools/citrineos-core-main/apps/operator-ui/src/app/(authenticated)/charging-stations/[id]/page.tsx +++ b/tools/citrineos-core-main/apps/operator-ui/src/app/(authenticated)/charging-stations/[id]/page.tsx @@ -10,5 +10,5 @@ type PageProps = { export default async function ShowChargingStationPage({ params }: PageProps) { const { id } = await params; - return ; + return ; }