Remove "by your instance" part of the error message

This commit is contained in:
Stefano Pigozzi 2024-09-07 21:18:39 +02:00
parent e472bc2e27
commit 28f87e2c8a
No known key found for this signature in database
GPG key ID: 5ADA3868646C3FC0

View file

@ -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.`,
}),
);
}