Skip to content

Commit 25363fe

Browse files
authored
Merge branch 'main' into misc/oauth_extractor
2 parents 27c5e61 + 475caa3 commit 25363fe

File tree

3 files changed

+52
-1
lines changed

3 files changed

+52
-1
lines changed

frontend/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
"styled-components": "^5.3.1",
3535
"use-debounce": "^9.0.3",
3636
"yup": "^1.0.0",
37-
"zustand": "^4.1.1"
37+
"zustand": "^4.1.1",
38+
"@tanstack/react-query-devtools": "4.36.1"
3839
},
3940
"scripts": {
4041
"start": "vite",

frontend/pnpm-lock.yaml

Lines changed: 48 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/src/components/App.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import { Toaster } from 'react-hot-toast';
1616
import GlobalCSS from 'components/globalCss';
1717
import * as S from 'components/App.styled';
1818
import { ThemeModeContext } from 'components/contexts/ThemeModeContext';
19+
import { ReactQueryDevtools } from '@tanstack/react-query-devtools';
1920

2021
import ConfirmationModal from './common/ConfirmationModal/ConfirmationModal';
2122
import { ConfirmContextProvider } from './contexts/ConfirmContext';
@@ -96,6 +97,7 @@ const App: React.FC = () => {
9697
</Suspense>
9798
</ThemeProvider>
9899
</GlobalSettingsProvider>
100+
<ReactQueryDevtools initialIsOpen={false} />
99101
</QueryClientProvider>
100102
);
101103
};

0 commit comments

Comments
 (0)