fix: debug the loading problem

This commit is contained in:
Tristan Yang
2023-08-10 12:48:15 +08:00
parent 9e451b365a
commit 45e338bb16
6 changed files with 29 additions and 12 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ type Props = {
};
const Lazy: FC<Props> = ({ children }) => {
return <Suspense fallback={<Loading fullscreen={true} />}>{children}</Suspense>;
return <Suspense fallback={<Loading fullscreen={true} context="lazy" />}>{children}</Suspense>;
};
export default Lazy;