Skip to content

Commit

Permalink
fix: hide eligible articles for now
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementNumericite committed Mar 8, 2024
1 parent 335f5a2 commit 5df8917
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions webapp/src/pages/dashboard/offer/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ export default function OfferPage() {
</Text>
</Flex>
</Button>
{offer.kind.startsWith("voucher") && (
{/* WAITING FOR THE REAL FEATURE TO BE DEVELOPPED */}
{/* {offer.kind.startsWith("voucher") && (
<Button
isDisabled
className="btn-conditions"
Expand All @@ -255,7 +256,7 @@ export default function OfferPage() {
</Text>
</Flex>
</Button>
)}
)} */}
</HStack>
{!!(offer.conditions ?? []).length && (
<>
Expand Down

0 comments on commit 5df8917

Please sign in to comment.