fix(core): fix the page loading style (#7336)

This commit is contained in:
EYHN
2024-06-26 06:20:20 +00:00
parent 16096978d8
commit 2d74e4c340
@@ -91,12 +91,12 @@ export const RouteContainer = ({ route }: Props) => {
</> </>
)} )}
</div> </div>
<view.body.Target className={styles.viewBodyContainer} />
<AffineErrorBoundary> <AffineErrorBoundary>
<Suspense> <Suspense>
<route.Component /> <route.Component />
</Suspense> </Suspense>
</AffineErrorBoundary> </AffineErrorBoundary>
<view.body.Target className={styles.viewBodyContainer} />
</div> </div>
); );
}; };