fix: hydration error (#2404)

This commit is contained in:
Himself65
2023-05-16 22:23:55 -07:00
committed by GitHub
parent 93116c24f2
commit 38305cd984

View File

@@ -1,4 +1,3 @@
import { styled } from '@affine/component';
import { AffineLoading } from '@affine/component/affine-loading';
import { memo, Suspense } from 'react';
@@ -17,34 +16,9 @@ export const Loading = memo(function Loading() {
);
});
// Used for the full page loading
const StyledLoadingContainer = styled('div')(() => {
return {
height: '100vh',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
color: '#6880FF',
flexDirection: 'column',
h1: {
fontSize: '2em',
marginTop: '15px',
fontWeight: '600',
},
};
});
/**
* @deprecated use skeleton instead
*/
export const PageLoading = () => {
// We disable the loading on desktop, because want it looks faster.
// This is a design requirement.
if (environment.isDesktop) {
return null;
}
return (
<StyledLoadingContainer>
<Loading />
</StyledLoadingContainer>
);
return null;
};
export default PageLoading;