diff --git a/packages/console/src/pages/GetStarted/hooks/index.ts b/packages/console/src/pages/GetStarted/hooks/index.ts index 2b0e7e8f7..775b87294 100644 --- a/packages/console/src/pages/GetStarted/hooks/index.ts +++ b/packages/console/src/pages/GetStarted/hooks/index.ts @@ -21,7 +21,7 @@ export type GetStartedType = 'application' | 'connector'; export const useGetStartedSteps = (type: GetStartedType, subtype?: string) => { const subPath = subtype ? `/${subtype}` : ''; const publicPath = useMemo( - () => `/console/get-started/${type}${subPath}/${i18next.language}`, + () => `/console/get-started/${type}${subPath}/${i18next.language}`.toLowerCase(), [type, subPath] );