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 = ({
}
/>
+ */}
>
)}