Merge pull request #3832 from element-hq/renovate/all-minor-patch

Update all non-major dependencies
This commit is contained in:
Robin
2026-04-03 18:09:58 +02:00
committed by GitHub
3 changed files with 678 additions and 301 deletions

View File

@@ -25,7 +25,7 @@ export abstract class TranslatedError extends Error {
messageKey: ParseKeys<DefaultNamespace, TOptions>,
translationFn: TFunction<DefaultNamespace>,
) {
super(translationFn(messageKey, { lng: "en" } as TOptions));
super(translationFn(messageKey, { lng: "en" }));
this.translatedMessage = translationFn(messageKey);
}
}