diff --git a/src/pages/Pools/Home/Favorites/index.tsx b/src/pages/Pools/Home/Favorites/index.tsx index 307c1d328a..29e2868489 100644 --- a/src/pages/Pools/Home/Favorites/index.tsx +++ b/src/pages/Pools/Home/Favorites/index.tsx @@ -24,7 +24,7 @@ export const PoolFavorites = () => { useEffect(() => { // map favorites to bonded pools let newFavoritesList = favorites.map((f) => { - const pool = !bondedPools.find((b) => b.addresses.stash === f); + const pool = bondedPools.find((b) => b.addresses.stash === f); if (!pool) removeFavorite(f); return pool; });