code refactoring

This commit is contained in:
2023-10-20 19:20:00 +02:00
parent d100092f35
commit 9361d9ce29
4 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ const LoadingBackdrop: React.FC = () => {
return (
<Backdrop
sx={{ color: '#fff', zIndex: (theme) => theme.zIndex.drawer + 1 }}
open={!isLoading}
open={isLoading}
>
<CircularProgress color="primary" />
</Backdrop>