Skip to content

Commit

Permalink
Fix submit label (#1951)
Browse files Browse the repository at this point in the history
Signed-off-by: Timo K <toger5@hotmail.de>
  • Loading branch information
toger5 authored Nov 30, 2023
1 parent 53732b9 commit 3083fff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/settings/FeedbackSettingsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const FeedbackSettingsTab: FC<Props> = ({ roomId }) => {
</FieldRow>
)}
<Button type="submit" disabled={sending}>
{sending ? t("submitting") : "action.submit"}
{sending ? t("submitting") : t("action.submit")}
</Button>
</FieldRow>
)}
Expand Down

0 comments on commit 3083fff

Please sign in to comment.