We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7414ce commit c8c3bfbCopy full SHA for c8c3bfb
src/ui/screens/info-pages/returning-user/InfoScreenReturningUser.js
@@ -20,7 +20,7 @@ const InfoScreenReturningUser = ({
20
<AppScreenWrapper isLoading={isLoading} home={true}>
21
<VBox sx={{ gap: { xs: 4, md: 8 } }}>
22
<Typography variant="h1">{t('app.welcomeBack.header')}</Typography>
23
- <Typography variant="body1">{userList?.length === 0 ? t("app.welcomeBack.textSingle") : t("app.welcomeBack.textMultiple")}</Typography>
+ <Typography variant="body1">{userList?.length === 1 ? t("app.welcomeBack.textSingle") : t("app.welcomeBack.textMultiple")}</Typography>
24
<VBox sx={{ gap: 2 }}>
25
{userList.length > 0 && (
26
userList.map((user, index) => (
0 commit comments