Skip to content
Snippets Groups Projects
Commit b309b07c authored by Adam Parák's avatar Adam Parák 💬
Browse files

HOTFIX: fix graphiql's errors in loading component

parent d030bd54
No related branches found
No related tags found
No related merge requests found
import { useSetPageTitle } from '@/utils'
import { lazy } from 'react'
import { Suspense, lazy } from 'react'
const GraphiQLPage = lazy(() => import('@/logic/GraphiQL'))
export const GraphiQL = () => {
useSetPageTitle('GraphiQL')
return <GraphiQLPage />
}
export const GraphiQL = () => <Suspense>
<GraphiQLPage />
</Suspense>
export default GraphiQL
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment