Skip to content

Commit

Permalink
[backend/frontend] Align frontend display
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-julien committed Sep 15, 2024
1 parent cde414b commit 4b636fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ const User: FunctionComponent<UserProps> = ({ data, refetch }) => {
</Grid>
<Grid item xs={6}>
<Typography variant="h3" gutterBottom={true} style={{ float: 'left' }}>
{orderedSessions.length < (user?.sessions?.total ?? 0) && (<>{t_i18n('Sessions')} - {orderedSessions.length} / {user?.sessions?.total}</>)}
{orderedSessions.length < (user.sessions?.total ?? 0) && (<>{t_i18n('Sessions')} - {orderedSessions.length} / {user.sessions?.total}</>)}
</Typography>
<Security needs={[SETTINGS_SETACCESSES]}>
<IconButton
Expand Down

0 comments on commit 4b636fd

Please sign in to comment.