fix(i18n): mark missing toast messages for translation (#2274)

This commit is contained in:
Konrad
2025-12-04 14:00:25 +11:00
committed by GitHub
parent 22d99c7410
commit 1275a15571
10 changed files with 28 additions and 24 deletions
@@ -108,8 +108,8 @@ export const DocumentSigningForm = ({
await completeDocument({ nextSigner });
} catch (err) {
toast({
title: 'Error',
description: 'An error occurred while completing the document. Please try again.',
title: _(msg`Error`),
description: _(msg`An error occurred while completing the document. Please try again.`),
variant: 'destructive',
});