From 28f87e2c8a067a85ed2c036316fcd136b6ba67e9 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sat, 7 Sep 2024 21:18:39 +0200 Subject: [PATCH] Remove "by your instance" part of the error message --- src/components/compose.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/compose.jsx b/src/components/compose.jsx index 9ca9501b..cfc93295 100644 --- a/src/components/compose.jsx +++ b/src/components/compose.jsx @@ -620,8 +620,8 @@ function Compose({ if (unsupportedFiles.length > 0) { alert( plural(unsupportedFiles.length, { - one: `File ${unsupportedFiles[0]} is not supported by your instance.`, - other: `Files ${unsupportedFiles.join(", ")} are not supported by your instance.`, + one: `File ${unsupportedFiles[0]} is not supported.`, + other: `Files ${unsupportedFiles.join(", ")} are not supported.`, }), ); }