summaryrefslogtreecommitdiff
path: root/client/src/components/Schedule.tsx
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-11-08 13:25:12 -0800
committerMichael Hunteman <michael@huntm.net>2024-11-08 13:25:12 -0800
commit9f4fe3236e0c5f135c44a245b9157270e940c36d (patch)
tree887f0a61c754091c437227f9007f0415e2a8de54 /client/src/components/Schedule.tsx
parentfab698d676d43a46b0fd5df592915ca12111dbcb (diff)
Export guests as csv
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>
);
}