Skip to content

Commit

Permalink
chore: small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
damnnou committed Mar 14, 2024
1 parent 120fac5 commit 1267bff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/position/PositionCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ const PositionCard = ({
<div className="flex gap-4 w-full whitespace-nowrap">
<RemoveLiquidityModal positionId={selectedPosition.id} />
</div>
{positionInFarming && farming && (
{positionInFarming && farming && !positionInEndedFarming && (
<ActiveFarmingCard
farming={farming}
selectedPosition={positionInFarming}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Pool/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ const PoolPage = () => {
!areDepositsLoading && (
<div>
<h2 className="font-semibold text-xl text-left mt-12">
Farmings
Farming
</h2>
<ActiveFarming
deposits={
Expand Down

0 comments on commit 1267bff

Please sign in to comment.