Skip to content

Commit ffa40ef

Browse files
committed
Merge remote-tracking branch 'origin/main' into feature/DC-172-backend-enrollment
2 parents b7ca690 + 7c18235 commit ffa40ef

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/playwright-e2e.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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'

0 commit comments

Comments
 (0)