Hotfix to match github pages url

This commit is contained in:
keannu125 2023-03-25 13:13:33 +08:00
parent c6d7f1a212
commit 401199bba6
2 changed files with 6 additions and 8 deletions

View file

@ -2,7 +2,7 @@
"name": "react-notes", "name": "react-notes",
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"homepage": "https://lemeow125.github.io/react-notes/#", "homepage": "https://lemeow125.github.io/React-NotesApp/#",
"dependencies": { "dependencies": {
"@emotion/react": "^11.10.6", "@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6", "@emotion/styled": "^11.10.6",

View file

@ -59,13 +59,11 @@ const root = ReactDOM.createRoot(
); );
root.render( root.render(
<React.StrictMode> <Provider store={Store}>
<Provider store={Store}> <QueryClientProvider client={queryClient}>
<QueryClientProvider client={queryClient}> <RouterProvider router={router} />
<RouterProvider router={router} /> </QueryClientProvider>
</QueryClientProvider> </Provider>
</Provider>
</React.StrictMode>
); );
// If you want to start measuring performance in your app, pass a function // If you want to start measuring performance in your app, pass a function