chore: Update translations

This commit is contained in:
2024-04-22 20:17:01 +00:00
parent ee9f941b11
commit ea54ee2b00
3 changed files with 9 additions and 12 deletions

View File

@ -4,7 +4,7 @@ import { EventKind, NostrEvent, NostrLink, TaggedNostrEvent, ToNostrEventTag, Un
import useLogin from "@/Hooks/useLogin";
export class MutedWordTag implements ToNostrEventTag {
constructor(readonly word: string) { }
constructor(readonly word: string) {}
toEventTag(): string[] | undefined {
return ["word", this.word.toLowerCase()];

View File

@ -48,10 +48,11 @@ export default function ModerationSettingsPage() {
value={muteWord}
onChange={e => setMuteWord(e.target.value.toLowerCase())}
/>
<AsyncButton onClick={async () => {
await addMutedWord(muteWord);
setMuteWord("");
}}>
<AsyncButton
onClick={async () => {
await addMutedWord(muteWord);
setMuteWord("");
}}>
<FormattedMessage defaultMessage="Add" id="2/2yg+" />
</AsyncButton>
</div>