summaryrefslogtreecommitdiff
path: root/client/src/components/Schedule.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/components/Schedule.tsx')
-rw-r--r--client/src/components/Schedule.tsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/client/src/components/Schedule.tsx b/client/src/components/Schedule.tsx
index dfe4a30..fc1fb64 100644
--- a/client/src/components/Schedule.tsx
+++ b/client/src/components/Schedule.tsx
@@ -9,7 +9,6 @@ import {
import InsertInvitationIcon from '@mui/icons-material/InsertInvitation';
import { useAppDispatch } from '../hooks';
import { showDialog } from '../slices/uiSlice';
-import { BlurryLoadDiv } from './BlurryLoadDiv';
function Schedule() {
const dispatch = useAppDispatch();
@@ -21,7 +20,7 @@ function Schedule() {
};
return (
- <BlurryLoadDiv
+ <div
style={{
height: '100%',
display: 'flex',
@@ -104,7 +103,7 @@ function Schedule() {
</div>
</div>
</Paper>
- </BlurryLoadDiv>
+ </div>
);
}