From ec24a15c66173fc52d7ce60a82ed20728d68f9cf Mon Sep 17 00:00:00 2001 From: jason Date: Mon, 9 Mar 2026 22:14:33 -0500 Subject: [PATCH] feat: wrap app in SettingsProvider --- client/src/main.jsx | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/client/src/main.jsx b/client/src/main.jsx index 0291fe5..91cc3dc 100644 --- a/client/src/main.jsx +++ b/client/src/main.jsx @@ -1,10 +1,13 @@ -import React from 'react' -import ReactDOM from 'react-dom/client' +import { StrictMode } from 'react' +import { createRoot } from 'react-dom/client' +import { SettingsProvider } from './hooks/useSettings' import App from './App.jsx' import './index.css' -ReactDOM.createRoot(document.getElementById('root')).render( - - - , -) \ No newline at end of file +createRoot(document.getElementById('root')).render( + + + + + , +)