Skip to content

Commit

Permalink
feat: Migrate reward type
Browse files Browse the repository at this point in the history
  • Loading branch information
jinoosss committed May 24, 2024
1 parent cfc56e8 commit 84c7fc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ const MyPositionCard: React.FC<MyPositionCardProps> = ({
SWAP_FEE: [],
STAKING: [],
EXTERNAL: [],
INTERNAL: [],
},
);

Expand Down Expand Up @@ -282,6 +283,7 @@ const MyPositionCard: React.FC<MyPositionCardProps> = ({
SWAP_FEE: [],
STAKING: [],
EXTERNAL: [],
INTERNAL: [],
},
);
return aprRewardInfo;
Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/constants/option.constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ export type AddLiquiditySubmitType =
| "SELECT_TOKEN"
| "AMOUNT_TOO_LOW";

export type RewardType = "SWAP_FEE" | "STAKING" | "EXTERNAL";
export type RewardType = "SWAP_FEE" | "STAKING" | "EXTERNAL" | "INTERNAL";

export type StakingPeriodType = "5D" | "10D" | "30D" | "MAX";

Expand Down

0 comments on commit 84c7fc1

Please sign in to comment.