Skip to content

Commit

Permalink
Fix incorrect keyboard shortcut helper text
Browse files Browse the repository at this point in the history
  • Loading branch information
SocialForge committed Oct 31, 2023
1 parent d71eb09 commit cf94533
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/dist.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/components/Scanning.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ export function Scanning({ onUnfollow }: { readonly onUnfollow: (usersToUnfollow
switch (state.currentTab) {
case 'non_whitelisted':
whitelistButtonMarkup = (
<button title='Add selected users to whitelist (CTRL+W)' onClick={toggleSelectedUsersWhitelistStatus}>
<button title='Add selected users to whitelist (CTRL+X)' onClick={toggleSelectedUsersWhitelistStatus}>
<UserCheckIcon size={2} />
</button>
);
Expand All @@ -506,7 +506,7 @@ export function Scanning({ onUnfollow }: { readonly onUnfollow: (usersToUnfollow
case 'whitelisted':
whitelistButtonMarkup = (
<button
title='Remove selected users from whitelist (CTRL+W)'
title='Remove selected users from whitelist (CTRL+X)'
onClick={toggleSelectedUsersWhitelistStatus}
>
<UserUncheckIcon size={2} />
Expand Down

0 comments on commit cf94533

Please sign in to comment.