Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Dec 26, 2023
1 parent b984552 commit 955b9b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/staking/[address]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ function HeatmapSection({ group }: { group?: ValidatorGroup }) {
<HeatmapSquares data={data} rows={4} columns={25} />
<div className="ml-px flex space-x-10">
<div className="flex items-center">
<div className="bg-green-700 h-3 w-3"></div>
<div className="h-3 w-3 bg-green-700"></div>
<label className="ml-2 text-sm">Reward Paid</label>
</div>
<div className="flex items-center">
Expand Down
2 changes: 1 addition & 1 deletion src/components/icons/HelpIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function _HelpIcon({ text, size = 20 }: { text: string; size?: number }) {
width={size}
height={size}
onClick={onClick}
classes="opacity-50"
className="opacity-50"
/>
);
}
Expand Down

0 comments on commit 955b9b3

Please sign in to comment.