Skip to content

Commit

Permalink
refac: minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
EjembiEmmanuel committed Dec 2, 2024
1 parent 08bf11f commit d5eae07
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/store/nimboradex.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,8 @@ export class NimboraDex extends IDapp<NimboraDexDoc> {
.filter(this.commonVaultFilter)
.forEach((poolName) => {
const poolData: NimboraDexDoc = data[poolName];
let category = Category.Others;
let riskFactor = 0.75;
if (poolName === 'USDC') {
category = Category.Stable;
riskFactor = 0.5;
}
const category = Category.Others;
const riskFactor = 0.75;

const logo =
CONSTANTS.LOGOS[poolName as keyof typeof CONSTANTS.LOGOS];
Expand Down

0 comments on commit d5eae07

Please sign in to comment.