From 9a07fba9919be6ca211e01d88b07eafaf8817d8c Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Sun, 4 Aug 2024 23:42:52 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84(frontend)=20center=20the=20feedbac?= =?UTF-8?q?k=20screen=20text?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Align the screen with the mockup, and the recent added error screen. --- src/frontend/src/features/rooms/routes/Feedback.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/src/features/rooms/routes/Feedback.tsx b/src/frontend/src/features/rooms/routes/Feedback.tsx index bb4fa34a..80875dbe 100644 --- a/src/frontend/src/features/rooms/routes/Feedback.tsx +++ b/src/frontend/src/features/rooms/routes/Feedback.tsx @@ -1,5 +1,5 @@ import { useTranslation } from 'react-i18next' -import { P } from '@/primitives' +import { Text } from '@/primitives' import { Screen } from '@/layout/Screen' import { CenteredContent } from '@/layout/CenteredContent' @@ -8,7 +8,7 @@ export const FeedbackRoute = () => { return ( -

{t('feedback.body')}

+ {t('feedback.body')}
)