mirror of
https://github.com/langgenius/dify.git
synced 2026-07-26 06:08:38 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: GareArc <garethcxy@dify.ai>
12 lines
332 B
TypeScript
12 lines
332 B
TypeScript
'use client'
|
|
|
|
import type { ReactNode } from 'react'
|
|
import { useSuspenseQuery } from '@tanstack/react-query'
|
|
import { userProfileQueryOptions } from '@/features/account-profile/client'
|
|
|
|
export function ProfileBootstrapGate({ children }: { children: ReactNode }) {
|
|
useSuspenseQuery(userProfileQueryOptions())
|
|
|
|
return children
|
|
}
|