First swing.

This commit is contained in:
2025-10-12 17:44:54 +00:00
parent 33454bc4e1
commit e5bd3c36f5
106 changed files with 7592 additions and 1270 deletions

View File

@@ -4,6 +4,7 @@ import { QueryClientProvider } from '@tanstack/react-query';
import './index.css';
import App from './App';
import { ThemeProvider } from './contexts/ThemeContext';
import { InstanceProvider } from './hooks';
import { queryClient } from './lib/queryClient';
import { ErrorBoundary } from './components/ErrorBoundary';
@@ -15,9 +16,11 @@ root.render(
<StrictMode>
<ErrorBoundary>
<QueryClientProvider client={queryClient}>
<ThemeProvider defaultTheme="light" storageKey="wild-central-theme">
<App />
</ThemeProvider>
<InstanceProvider>
<ThemeProvider defaultTheme="light" storageKey="wild-central-theme">
<App />
</ThemeProvider>
</InstanceProvider>
</QueryClientProvider>
</ErrorBoundary>
</StrictMode>