diff --git a/src/pages/pupil/Dashboard.tsx b/src/pages/pupil/Dashboard.tsx index 80d5e8a18..de10f2c8c 100644 --- a/src/pages/pupil/Dashboard.tsx +++ b/src/pages/pupil/Dashboard.tsx @@ -22,6 +22,7 @@ import { Lecture } from '../../gql/graphql'; import DisableableButton from '../../components/DisablebleButton'; import { useRoles } from '../../hooks/useApollo'; import ConfirmationModal from '@/modals/ConfirmationModal'; +import { Typography } from '@/components/Typography'; type Props = {}; @@ -220,6 +221,11 @@ const Dashboard: React.FC = () => { {!called || (loading && )} {called && !loading && ( +
+ + {t('hallo')} {data?.me.firstname}  ðŸ‘‹ + +
diff --git a/src/pages/student/DashboardStudent.tsx b/src/pages/student/DashboardStudent.tsx index d90f62bcd..8028f12b3 100644 --- a/src/pages/student/DashboardStudent.tsx +++ b/src/pages/student/DashboardStudent.tsx @@ -26,6 +26,7 @@ import NextAppointmentCard from '../../widgets/NextAppointmentCard'; import { Lecture } from '../../gql/graphql'; import useApollo from '../../hooks/useApollo'; import { useUserType } from '../../hooks/useApollo'; +import { Typography } from '@/components/Typography'; type Props = {}; @@ -228,6 +229,11 @@ const DashboardStudent: React.FC = () => { {!called || (loading && )} {called && !loading && ( +
+ + {t('hallo')} {data?.me.firstname}  ðŸ‘‹ + +