-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
💹 Fix chunk sizes #4580
💹 Fix chunk sizes #4580
Conversation
@@ -108,12 +108,14 @@ export const MainLayout: FC = () => { | |||
return ( | |||
<> | |||
<CookiePopover /> | |||
{/*<Suspense fallback={<div>adawd</div>}>*/} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suspense will be included when it'll be supported by apollo client
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be deleted, since I introduced it in Viewer
and Studio
layout
@@ -35,3 +35,5 @@ export const StudioEntrypoint: FC<StudioEntrypointProps> = ({ enterLocation }) = | |||
|
|||
return <StudioLoading /> | |||
} | |||
|
|||
export default StudioEntrypoint |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should't change it in this PR, but generally we should avoid default export in files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
React.lazy
requires default export
#4575