Fix submit label (#1951)

Signed-off-by: Timo K <toger5@hotmail.de>
This commit is contained in:
Timo
2023-11-30 17:31:12 +01:00
committed by GitHub
parent 53732b99bf
commit 3083fff480

View File

@@ -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>
)}