Skip to content

Commit

Permalink
Merge pull request #4 from allinbits/fix/logos
Browse files Browse the repository at this point in the history
Fix/logos
  • Loading branch information
albttx authored Dec 11, 2024
2 parents 540d6cd + a820182 commit 4364f1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"semi": true,
"endOfLine": "auto",
"bracketSpacing": true,
"TrailingCooma": true,
"trailingComma": "all",
"arrowParens": "always"
}
2 changes: 1 addition & 1 deletion src/stores/useDashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export function fromLocal(lc: LocalConfig): ChainConfig {
}
}
conf.features = lc.features
conf.logo = lc.logo.startsWith('http') ? lc.logo : `https://ping.pub${lc.logo}`;
conf.logo = lc.logo;
conf.keplrFeatures = lc.keplr_features;
conf.keplrPriceStep = lc.keplr_price_step;
conf.themeColor = lc.theme_color;
Expand Down

0 comments on commit 4364f1b

Please sign in to comment.