You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/tabs/TasksTab.tsx
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,10 @@ export default function TasksTab() {
106
106
or [interact with smart contracts](https://base.blockscout.com/address/0xd454688D0185aB166D0c4b28D57edeb475b416A8?tab=read_write_proxy&utm_source=merits-website&utm_medium=transactions-task)
107
107
to earn extra Merits each week.
108
108
`.trim(),
109
+
percentileHint:
110
+
"Measures your performance relative to other Merit program participants. Complete additional transactions to increase your weekly performance rank.",
111
+
amountHint:
112
+
"The number of extra Merits you have earned this week from your transactions. Complete additional transactions to earn additional Merits.",
@@ -129,6 +137,10 @@ export default function TasksTab() {
129
137
Grab your [Activity pass](${activityPassUrl}&utm_medium=verify-contracts-task)
130
138
then just use Blockscout explorers in your every day routine.
131
139
`.trim(),
140
+
percentileHint:
141
+
"Measures your performance relative to other Merit program participants. Use Blockscout explorers and add them to a MetaMask wallet to increase your weekly performance rank.",
142
+
amountHint:
143
+
"The number of extra Merits you have earned this week from your Blockscout usage. Use Blockscout explorers and add them to a MetaMask wallet to earn additional Merits.",
132
144
percentile: activities.usage?.percentile,
133
145
percentileDiff: activities.usage?.percentileDiff,
134
146
amount: activities.usage?.amount,
@@ -169,15 +181,15 @@ export default function TasksTab() {
169
181
<DashboardCardValue
170
182
label="Performance rank"
171
183
value={item.percentile}
172
-
hint="Performance rank"
184
+
hint={item.percentileHint}
173
185
bottomText={`${item.percentileDiff} vs previous week`}
174
186
isLoading={isLoading}
175
187
/>
176
188
<DashboardCardValue
177
189
label="Merits earned"
178
190
value={item.amount}
179
191
withIcon
180
-
hint="Merits earned"
192
+
hint={item.amountHint}
181
193
bottomText={`${item.amountDiff} vs previous week`}
0 commit comments