File tree Expand file tree Collapse file tree
src/SEBT.Portal.Web/src/providers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -103,8 +103,7 @@ jobs:
103103 run : |
104104 # Start API in dev mode + frontend from production build
105105 pnpm api:dev &
106- cd src/SEBT.Portal.Web && pnpm start &
107- cd ..
106+ (cd src/SEBT.Portal.Web && pnpm start) &
108107 echo "Waiting for server at http://localhost:3000..."
109108 for i in $(seq 1 90); do
110109 curl -sf --max-time 15 http://localhost:3000 > /dev/null && echo "Server ready" && break
Original file line number Diff line number Diff line change 1+ 'use client'
2+
3+ // Initialize i18next before rendering. This side-effect import must run
4+ // inside a 'use client' boundary because it transitively imports
5+ // react-i18next (which calls createContext() at module scope).
6+ import '@/lib/i18n-init'
7+
8+ export { I18nProvider } from '@sebt/design-system/client'
You can’t perform that action at this time.
0 commit comments