Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/components/Claim/Link/Initial.view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,7 @@ export const InitialClaimLinkView = ({
<Icon name={'plus-circle'} className="h-4 fill-gray-1" />
<label className="font-bold">Points</label>
</div>
{/* TODO: correct points estimation
<span className="flex flex-row items-center justify-center gap-1 text-center text-sm font-normal leading-4">
{estimatedPoints < 0 ? estimatedPoints : `+${estimatedPoints}`}
<MoreInfo
Expand All @@ -545,6 +546,7 @@ export const InitialClaimLinkView = ({
}
/>
</span>
*/}
</div>
</div>
)}
Expand Down
2 changes: 2 additions & 0 deletions src/components/Claim/Link/Onchain/Confirm.view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ export const ConfirmClaimLinkView = ({
<Icon name={'plus-circle'} className="h-4 fill-gray-1" />
<label className="font-bold">Points</label>
</div>
{/* TODO: correct points estimation
<span className="flex flex-row items-center justify-center gap-1 text-center text-sm font-normal leading-4">
{estimatedPoints < 0 ? estimatedPoints : `+${estimatedPoints}`}
<MoreInfo
Expand All @@ -237,6 +238,7 @@ export const ConfirmClaimLinkView = ({
}
/>
</span>
*/}
</div>
</div>

Expand Down
2 changes: 2 additions & 0 deletions src/components/Create/Link/Confirm.view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,7 @@ export const CreateLinkConfirmView = ({
<Icon name={'plus-circle'} className="h-4 fill-gray-1" />
<label className="font-bold">Points</label>
</div>
{/* TODO: correct points estimation
<span className="flex flex-row items-center justify-center gap-1 text-center text-sm font-normal leading-4">
{estimatedPoints && estimatedPoints < 0 ? estimatedPoints : `+${estimatedPoints}`}
<MoreInfo
Expand All @@ -334,6 +335,7 @@ export const CreateLinkConfirmView = ({
}
/>
</span>
*/}
</div>
</div>

Expand Down
2 changes: 2 additions & 0 deletions src/components/Request/Pay/Views/Initial.view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,7 @@ export const InitialView = ({
<Icon name={'plus-circle'} className="h-4 fill-gray-1" />
<label className="font-bold">Points</label>
</div>
{/* TODO: correct points estimation
<span className="flex flex-row items-center justify-center gap-1 text-center text-sm font-normal leading-4">
{estimatedPoints ? (
`${estimatedPoints > 0 ? '+' : ''}${estimatedPoints}`
Expand All @@ -454,6 +455,7 @@ export const InitialView = ({
}
/>
</span>
*/}
</div>
</>
)}
Expand Down
Loading