Skip to content

Commit

Permalink
Merge pull request #45 from Cardinal-Cryptography/A0-3395-corrections…
Browse files Browse the repository at this point in the history
…-after-release

Corrections after release
  • Loading branch information
youPickItUp authored Oct 25, 2023
2 parents e28bc1d + f559491 commit 5db8460
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions patches/@polkadot-cloud+core+0.1.20.patch
Original file line number Diff line number Diff line change
Expand Up @@ -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 @@
Expand All @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Pools/Home/Favorites/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
});
Expand Down

0 comments on commit 5db8460

Please sign in to comment.