From 6a50f8e69389231380803a660443d725778bee6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Ram=C3=ADrez?= Date: Tue, 3 Dec 2024 09:04:16 -0300 Subject: [PATCH] feat: hide points estimation --- src/components/Claim/Link/Initial.view.tsx | 2 ++ src/components/Claim/Link/Onchain/Confirm.view.tsx | 2 ++ src/components/Create/Link/Confirm.view.tsx | 2 ++ src/components/Request/Pay/Views/Initial.view.tsx | 2 ++ 4 files changed, 8 insertions(+) diff --git a/src/components/Claim/Link/Initial.view.tsx b/src/components/Claim/Link/Initial.view.tsx index d53a055f3..09d8781d0 100644 --- a/src/components/Claim/Link/Initial.view.tsx +++ b/src/components/Claim/Link/Initial.view.tsx @@ -533,6 +533,7 @@ export const InitialClaimLinkView = ({ + {/* TODO: correct points estimation {estimatedPoints < 0 ? estimatedPoints : `+${estimatedPoints}`} + */} )} diff --git a/src/components/Claim/Link/Onchain/Confirm.view.tsx b/src/components/Claim/Link/Onchain/Confirm.view.tsx index 475e80357..98b318794 100644 --- a/src/components/Claim/Link/Onchain/Confirm.view.tsx +++ b/src/components/Claim/Link/Onchain/Confirm.view.tsx @@ -225,6 +225,7 @@ export const ConfirmClaimLinkView = ({ + {/* TODO: correct points estimation {estimatedPoints < 0 ? estimatedPoints : `+${estimatedPoints}`} + */} diff --git a/src/components/Create/Link/Confirm.view.tsx b/src/components/Create/Link/Confirm.view.tsx index 2afa27a7e..a419d6226 100644 --- a/src/components/Create/Link/Confirm.view.tsx +++ b/src/components/Create/Link/Confirm.view.tsx @@ -320,6 +320,7 @@ export const CreateLinkConfirmView = ({ + {/* TODO: correct points estimation {estimatedPoints && estimatedPoints < 0 ? estimatedPoints : `+${estimatedPoints}`} + */} diff --git a/src/components/Request/Pay/Views/Initial.view.tsx b/src/components/Request/Pay/Views/Initial.view.tsx index 180dd5c6b..ae5cf275e 100644 --- a/src/components/Request/Pay/Views/Initial.view.tsx +++ b/src/components/Request/Pay/Views/Initial.view.tsx @@ -438,6 +438,7 @@ export const InitialView = ({ + {/* TODO: correct points estimation {estimatedPoints ? ( `${estimatedPoints > 0 ? '+' : ''}${estimatedPoints}` @@ -454,6 +455,7 @@ export const InitialView = ({ } /> + */} )}