diff options
Diffstat (limited to 'components/TagMenu.tsx')
-rw-r--r-- | components/TagMenu.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/TagMenu.tsx b/components/TagMenu.tsx index 2a72e67..4841cbf 100644 --- a/components/TagMenu.tsx +++ b/components/TagMenu.tsx @@ -111,7 +111,7 @@ export const TagMenu = (props: TagMenuProps) => { }} icon={blacklist ? <MinusIcon /> : <ViewOffIcon />} > - {blacklist ? 'Remove from blacklist' : 'Add to blacklist'} + {blacklist ? 'Remove from blocklist' : 'Add to blocklist'} </MenuItem> )} {!blacklist && ( @@ -131,7 +131,7 @@ export const TagMenu = (props: TagMenuProps) => { }} icon={whitelist ? <MinusIcon /> : <ViewIcon />} > - {whitelist ? 'Remove from whitelist' : 'Add to whitelist'} + {whitelist ? 'Remove from allowlist' : 'Add to allowlist'} </MenuItem> )} </> |