From 3a7f62fdbc746acb851131ce17ca908247e67c7f Mon Sep 17 00:00:00 2001 From: Starstrike Date: Thu, 1 May 2025 16:06:41 -0400 Subject: [PATCH] Add WallpaperIcon to update info dialog - Consistent with event creation form --- frontend/src/components/EventAdmin.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/components/EventAdmin.tsx b/frontend/src/components/EventAdmin.tsx index 01b0d04..5f4b2ac 100644 --- a/frontend/src/components/EventAdmin.tsx +++ b/frontend/src/components/EventAdmin.tsx @@ -33,6 +33,7 @@ import { import DeleteIcon from '@mui/icons-material/Delete'; import EditIcon from '@mui/icons-material/Edit'; import AddIcon from '@mui/icons-material/Add'; +import WallpaperIcon from '@mui/icons-material/Wallpaper'; import axios from 'axios'; interface RSVP { @@ -940,6 +941,7 @@ const EventAdmin: React.FC = () => { variant="outlined" component="label" fullWidth + startIcon={} sx={{ mt: 1 }} > {updateForm.wallpaper ? 'Change Wallpaper' : (event.wallpaper ? 'Replace Wallpaper' : 'Upload Wallpaper')}