File tree Expand file tree Collapse file tree 1 file changed +13
-15
lines changed
frontend/src/components/routes/event/EventDashboard Expand file tree Collapse file tree 1 file changed +13
-15
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import classes from "./EventDashboard.module.scss";
1111import { useGetEventStats } from "../../../../queries/useGetEventStats.ts" ;
1212import { formatCurrency } from "../../../../utilites/currency.ts" ;
1313import { formatDate } from "../../../../utilites/dates.ts" ;
14- import { Button , Group , Skeleton } from "@mantine/core" ;
14+ import { Button , Skeleton } from "@mantine/core" ;
1515import { useMediaQuery } from "@mantine/hooks" ;
1616import { IconX } from "@tabler/icons-react" ;
1717import { useGetAccount } from "../../../../queries/useGetAccount.ts" ;
@@ -90,21 +90,19 @@ export const EventDashboard = () => {
9090
9191 return (
9292 < PageBody >
93- < Group justify = "space-between" align = "center" mb = { '5px' } >
94- < PageTitle style = { { marginBottom : 0 } } >
95- { ! isMobile && (
96- < Trans >
97- Welcome back{ me ?. first_name && ', ' + me ?. first_name } 👋
98- </ Trans >
99- ) }
93+ < PageTitle style = { { marginBottom : 0 } } >
94+ { ! isMobile && (
95+ < Trans >
96+ Welcome back{ me ?. first_name && ', ' + me ?. first_name } 👋
97+ </ Trans >
98+ ) }
10099
101- { isMobile && (
102- < Trans >
103- Hi { me ?. first_name && me ?. first_name } 👋
104- </ Trans >
105- ) }
106- </ PageTitle >
107- </ Group >
100+ { isMobile && (
101+ < Trans >
102+ Hi { me ?. first_name && me ?. first_name } 👋
103+ </ Trans >
104+ ) }
105+ </ PageTitle >
108106
109107 { ! event && < DashBoardSkeleton /> }
110108
You can’t perform that action at this time.
0 commit comments