Skip to content

Commit

Permalink
Remove "by your instance" part of the error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffo99 committed Sep 7, 2024
1 parent e472bc2 commit 28f87e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/compose.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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.`,
}),
);
}
Expand Down

0 comments on commit 28f87e2

Please sign in to comment.