Skip to content

Commit 7a651b0

Browse files
committed
fix: add missing ErrorProvider import in root layout
layout.tsx already wrapped children in <ErrorProvider> but never imported it, so any real typecheck (tsc has never actually run in CI before this PR) fails immediately on this file.
1 parent 4f8071b commit 7a651b0

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/app/layout.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { I18nProvider } from '@/i18n';
1111
import { NetworkProvider } from '@/context/NetworkContext';
1212
import { SocketIOProvider } from '@/context/SocketIOContext';
1313
import DevWalletSwitcher from '@/components/DevWalletSwitcher';
14+
import { ErrorProvider } from '@/components/ErrorModal';
1415

1516
const inter = Inter({ subsets: ['latin'] });
1617

0 commit comments

Comments
 (0)