diff --git a/patches/@polkadot-cloud+core+0.1.20.patch b/patches/@polkadot-cloud+core+0.1.20.patch index ed2a4b9014..f9671140f8 100644 --- a/patches/@polkadot-cloud+core+0.1.20.patch +++ b/patches/@polkadot-cloud+core+0.1.20.patch @@ -109,7 +109,7 @@ index 93d847d..5eea5d2 100644 \ No newline at end of file diff --git a/node_modules/@polkadot-cloud/core/theme/aleph-zero-relay/index.css b/node_modules/@polkadot-cloud/core/theme/aleph-zero-relay/index.css new file mode 100644 -index 0000000..83d7511 +index 0000000..6284532 --- /dev/null +++ b/node_modules/@polkadot-cloud/core/theme/aleph-zero-relay/index.css @@ -0,0 +1,28 @@ @@ -120,8 +120,8 @@ index 0000000..83d7511 +.theme-aleph-zero-custom-relay { + --accent-color-primary-light: #00ccab; + --accent-color-primary-dark: #00ccab; -+ --accent-color-secondary-light: #00ccab; -+ --accent-color-secondary-dark: #00ccab; ++ --accent-color-secondary-light: #0A766C; ++ --accent-color-secondary-dark: #0A766C; + --accent-color-stroke-light: #00ccab; + --accent-color-stroke-dark: #00ccab; + --accent-color-transparent-light: #00ccab0d; 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; });