Skip to content

Commit

Permalink
Fix the settings label
Browse files Browse the repository at this point in the history
We were displaying the raw translation key rather than the translated text.
  • Loading branch information
robintown committed Nov 29, 2023
1 parent c40ee6b commit 8b39361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UserMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const UserMenu: FC<Props> = ({
arr.push({
key: "settings",
icon: SettingsIcon,
label: "common.settings",
label: t("common.settings"),
});

if (isPasswordlessUser && !preventNavigation) {
Expand Down

0 comments on commit 8b39361

Please sign in to comment.