Skip to content

Commit 84bed9e

Browse files
committed
fix: build error
1 parent f4ed190 commit 84bed9e

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/components/incentives/IncentivesTooltipContent.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,14 +197,12 @@ export const getSymbolMap = (incentive: ReserveIncentiveResponse) => {
197197
...IncentivesSymbolMap[rewardTokenSymbol],
198198
rewardTokenAddress: incentive.rewardTokenAddress,
199199
incentiveAPR: incentive.incentiveAPR,
200-
description: incentive.description,
201200
}
202201
: {
203202
...incentive,
204203
tokenIconSymbol: rewardTokenSymbol,
205204
symbol: rewardTokenSymbol,
206205
aToken: false,
207-
description: incentive.description,
208206
};
209207
};
210208

src/components/incentives/MerklIncentivesTooltipContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export const MerklIncentivesTooltipContent = ({
8181
</Typography>
8282
) : (
8383
<Typography variant="caption" color="text.strong" mb={3}>
84-
<Trans>{merklIncentivesFormatted.description}</Trans>{' '}
84+
<Trans>{merklIncentives.description}</Trans>{' '}
8585
<Link
8686
href={
8787
merklIncentives.customForumLink

src/hooks/useMerklIncentives.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ type ReserveIncentiveAdditionalData = {
8181
export type ExtendedReserveIncentiveResponse = ReserveIncentiveResponse &
8282
ReserveIncentiveAdditionalData & {
8383
breakdown: MerklIncentivesBreakdown;
84+
description?: string;
8485
allOpportunities?: {
8586
name: string;
8687
apy: number;

0 commit comments

Comments
 (0)