diff --git a/config/docker-compose-citrineos.yml b/config/docker-compose-citrineos.yml index 5c45ff2..a412d03 100644 --- a/config/docker-compose-citrineos.yml +++ b/config/docker-compose-citrineos.yml @@ -108,6 +108,7 @@ services: environment: NEXTAUTH_SECRET: Digitribe972 ADMIN_PASSWORD: Digitribe972 + HASURA_ADMIN_SECRET: Digitribe972 depends_on: - hasura labels: diff --git a/tools/citrineos-core-main/apps/operator-ui/src/app/(authenticated)/charging-stations/[id]/ClientStationDetailPage.tsx b/tools/citrineos-core-main/apps/operator-ui/src/app/(authenticated)/charging-stations/[id]/ClientStationDetailPage.tsx new file mode 100644 index 0000000..4f902a3 --- /dev/null +++ b/tools/citrineos-core-main/apps/operator-ui/src/app/(authenticated)/charging-stations/[id]/ClientStationDetailPage.tsx @@ -0,0 +1,27 @@ +// SPDX-FileCopyrightText: 2025 Contributors to the CitrineOS Project +// +// SPDX-License-Identifier: Apache-2.0 +'use client'; + +import dynamic from 'next/dynamic'; + +const StationDetailPage = dynamic( + () => import('./StationDetailPage'), + { + ssr: false, + loading: () => ( +
{error}
+Station ID: {id}
+No charging station found with id {id}.
+