Skip to content

Commit

Permalink
fix: remove paragraph in paragraph
Browse files Browse the repository at this point in the history
  • Loading branch information
antomor committed Dec 12, 2024
1 parent c4cf51e commit ae24ad8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ const tableHeaders: TableHeader[] = [
sortKey: RewardsColumnKeyEnum.estimatedRewards,
tooltip: {
text: (
<p>
<>
The estimated Backers’ share of the Builder’s rewards which will become claimable in the next Cycle.
<br />
<br />
The displayed information is dynamic and may vary based on total rewards and user activity. This
data is for informational purposes only.
</p>
</>
),
popoverProps: { size: 'medium' },
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const tableHeaders: TableHeader[] = [
sortKey: RewardsColumnKeyEnum.estimatedRewards,
tooltip: {
text: (
<p>
<>
An estimate of this Cycle’s rewards from each Builder that will become fully claimable by the end of
the current Cycle. These rewards gradually become claimable and are added to your ‘Claimable
Rewards’ as the cycle progresses. To check the cycle completion, go to Collective Rewards → Current
Expand All @@ -48,7 +48,7 @@ const tableHeaders: TableHeader[] = [
<br />
The displayed information is dynamic and may vary based on total rewards and user activity. This
data is for informational purposes only.
</p>
</>
),
popoverProps: { size: 'medium' },
},
Expand Down
4 changes: 2 additions & 2 deletions src/app/collective-rewards/rewards/backers/Rewards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ const RewardsContent: FC<RewardsProps> = ({ builder, gauges, tokens }) => {
rewards={['estimated']}
tooltip={{
text: (
<p>
<>
An estimate of this Cycle’s rewards that will become fully claimable by the end of the current
Cycle. These rewards gradually become claimable and are added to your ‘Claimable Rewards’ as
the cycle progresses. To check the cycle completion, go to Collective Rewards → Current Cycle.
<br />
<br />
The displayed information is dynamic and may vary based on total rewards and user activity.
This data is for informational purposes only.
</p>
</>
),
popoverProps: { size: 'medium' },
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ export const EstimatedRewards: FC<EstimatedRewardsProps> = ({ tokens: { rif, rbt
data-testid="EstimatedRewards"
tooltip={{
text: (
<p>
<>
Your estimated rewards which will become claimable at the start of the next Cycle.
<br />
<br />
The displayed information is dynamic and may vary based on total rewards and user activity. This
data is for informational purposes only.
</p>
</>
),
popoverProps: { size: 'medium' },
}}
Expand Down

0 comments on commit ae24ad8

Please sign in to comment.