diff --git a/ui/selectors/selectors.js b/ui/selectors/selectors.js index c6b736878..675b52108 100644 --- a/ui/selectors/selectors.js +++ b/ui/selectors/selectors.js @@ -971,6 +971,7 @@ function getAllowedAnnouncementIds(state) { const currentlyUsingLedgerLive = getLedgerTransportType(state) === LedgerTransportTypes.live; const isFirefox = window.navigator.userAgent.includes('Firefox'); + const isSwapsChain = getIsSwapsChain(state); return { 1: false, @@ -993,7 +994,7 @@ function getAllowedAnnouncementIds(state) { 18: true, 19: true, 20: currentKeyringIsLedger && isFirefox, - 21: true, + 21: isSwapsChain, }; }