Skip to content

Commit c8c3bfb

Browse files
committed
fix explainer text user creation
1 parent e7414ce commit c8c3bfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/screens/info-pages/returning-user/InfoScreenReturningUser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const InfoScreenReturningUser = ({
2020
<AppScreenWrapper isLoading={isLoading} home={true}>
2121
<VBox sx={{ gap: { xs: 4, md: 8 } }}>
2222
<Typography variant="h1">{t('app.welcomeBack.header')}</Typography>
23-
<Typography variant="body1">{userList?.length === 0 ? t("app.welcomeBack.textSingle") : t("app.welcomeBack.textMultiple")}</Typography>
23+
<Typography variant="body1">{userList?.length === 1 ? t("app.welcomeBack.textSingle") : t("app.welcomeBack.textMultiple")}</Typography>
2424
<VBox sx={{ gap: 2 }}>
2525
{userList.length > 0 && (
2626
userList.map((user, index) => (

0 commit comments

Comments
 (0)