From 00028fa5c62121ac0e1d7cbdf56bc6fb3023a3df Mon Sep 17 00:00:00 2001 From: Hemant Date: Thu, 14 Nov 2024 20:54:05 +0700 Subject: [PATCH] fix: ekubo logo loading issue (#185) * chore: formatted tvl data * fix: added dollar sign before tvl data * fix: removed dollar sign : ) * fix: undefined tvl formatting issue * fix: compile error in TVL * chore: raffle implementation * chore: deploy trigger * chore: updated cron expression * chore: updated cron expression * chore: updated cron expression * chore: update route method * chore: update route logic * chore: updated cron expression * chore: updated cron expression * chore: code refactor * chore: updated lucky winner route * fix: added cron secret * chore: updated lucky winner route.ts * chore: ui updates on raffle page * fix: bugs and ui tweaks * chore: text update * fix: ekubo logo --------- Co-authored-by: Akira <156126180+akiraonstarknet@users.noreply.github.com> --- src/store/ekobu.store.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/store/ekobu.store.ts b/src/store/ekobu.store.ts index f4fc082..aee40d3 100755 --- a/src/store/ekobu.store.ts +++ b/src/store/ekobu.store.ts @@ -1,6 +1,9 @@ import CONSTANTS, { TokenName, TOKENS } from '@/constants'; +import { StrategyLiveStatus } from '@/strategies/IStrategy'; +import { getPrice } from '@/utils'; +import fetchWithRetry from '@/utils/fetchWithRetry'; import { atom } from 'jotai'; -import { AtomWithQueryResult, atomWithQuery } from 'jotai-tanstack-query'; +import { atomWithQuery, AtomWithQueryResult } from 'jotai-tanstack-query'; import { IDapp } from './IDapp.store'; import { APRSplit, @@ -11,9 +14,6 @@ import { ProtocolAtoms, StrkDexIncentivesAtom, } from './pools'; -import { StrategyLiveStatus } from '@/strategies/IStrategy'; -import fetchWithRetry from '@/utils/fetchWithRetry'; -import { getPrice } from '@/utils'; interface EkuboBaseAprDoc { tokens: Token[]; @@ -80,7 +80,7 @@ type PriceOfToken = { export class Ekubo extends IDapp { name = 'Ekubo'; link = 'https://app.ekubo.org/positions'; - logo = 'https://app.ekubo.org/logo.svg'; + logo = 'https://app.ekubo.org/favicon.ico'; incentiveDataKey = 'Ekubo';