We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efa4e69 commit 2361003Copy full SHA for 2361003
src/pages/Settings/Muted.tsx
@@ -304,6 +304,7 @@ const Muted: Component = () => {
304
account?.actions.addToMuteList(word, 'word', (success) => {
305
if (!success) return;
306
setMutedWords((hashtags) => [word, ...hashtags]);
307
+ if (wordInput) wordInput.value = '';
308
});
309
}}
310
>
@@ -356,6 +357,7 @@ const Muted: Component = () => {
356
357
account?.actions.addToMuteList(hashtag, 'hashtag', (success) => {
358
359
setMutedHashtags((hashtags) => [hashtag, ...hashtags]);
360
+ if (hashtagInput) hashtagInput.value = '';
361
362
363
0 commit comments