diff --git a/src/components/templates/ExplorerAccount/index.tsx b/src/components/templates/ExplorerAccount/index.tsx index c39b3c454..7d72ad4cc 100644 --- a/src/components/templates/ExplorerAccount/index.tsx +++ b/src/components/templates/ExplorerAccount/index.tsx @@ -161,11 +161,10 @@ export const ExplorerAccountView = ( backgroundColor: account.isOnWatchlist ? COLORS.warning100 : COLORS.brand600, - borderWidth: listsWithAccount.length > 0 ? 1 : 0, - borderColor: - listsWithAccount.length > 0 - ? COLORS.warning200 - : COLORS.transparent + borderWidth: account.isOnWatchlist ? 1 : 0, + borderColor: account.isOnWatchlist + ? COLORS.warning200 + : COLORS.transparent }} testID="Add_To_Watchlist_Button" type="circular"