diff --git a/apps/frontend/src/pages/organization/[id].vue b/apps/frontend/src/pages/organization/[id].vue index 6dfdc57d5..ef8fecd1c 100644 --- a/apps/frontend/src/pages/organization/[id].vue +++ b/apps/frontend/src/pages/organization/[id].vue @@ -294,7 +294,7 @@ const tags = useTags(); const flags = useFeatureFlags(); const config = useRuntimeConfig(); -let orgId = useRouteId(); +let orgId = useRouteId().toLowerCase(); // hacky way to show the edit button on the corner of the card. const routeHasSettings = computed(() => route.path.includes("settings"));