Skip to content

Commit

Permalink
update apr check
Browse files Browse the repository at this point in the history
  • Loading branch information
Ridel1e committed Nov 10, 2023
1 parent 8e9dd72 commit d6b7a0d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { AssetIcon } from '../../../../../../../../components/AssetIcon/AssetIco
import { InfoTooltip } from '../../../../../../../../components/InfoTooltip/InfoTooltip';
import { SpfLogo } from '../../../../../../../../components/SpfLogo/SpfLogo.tsx';
import { isLbspPool } from '../../../../../../../../network/cardano/api/lbspWhitelist/lbspWhitelist.ts';
import { isSpfPool } from '../../../../../../../../utils/lbsp.ts';
import { isSpecialBoostedPool } from '../../../../../../../../utils/specialPools.ts';
import { calculateLbspApr } from './calculateLbspApr';

Expand Down Expand Up @@ -141,7 +142,7 @@ export const CardanoAprColumnContent: FC<CardanoAprColumnContent> = ({

return (
<>
{_isLbspPool ? (
{_isLbspPool || isSpfPool(ammPool.id) ? (
<CardanoLbspAmmPoolAprColumnContent
isAllContentTrigger={isAllContentTrigger}
ammPool={ammPool}
Expand Down

0 comments on commit d6b7a0d

Please sign in to comment.