Feat: support account deletion (#10008)

This commit is contained in:
NFish
2024-12-30 13:39:26 +08:00
committed by GitHub
parent 74d3320519
commit adacd01f82
14 changed files with 316 additions and 346 deletions

View File

@@ -3,6 +3,7 @@ import I18nServer from './components/i18n-server'
import BrowserInitor from './components/browser-initor'
import SentryInitor from './components/sentry-initor'
import { getLocaleOnServer } from '@/i18n/server'
import { TanstackQueryIniter } from '@/context/query-client'
import './styles/globals.css'
import './styles/markdown.scss'
@@ -46,7 +47,9 @@ const LocaleLayout = ({
>
<BrowserInitor>
<SentryInitor>
<I18nServer>{children}</I18nServer>
<TanstackQueryIniter>
<I18nServer>{children}</I18nServer>
</TanstackQueryIniter>
</SentryInitor>
</BrowserInitor>
</body>