Skip to content

Commit

Permalink
fix earnings tab icon
Browse files Browse the repository at this point in the history
  • Loading branch information
0xshiba1 committed May 13, 2024
1 parent f6485bf commit e427630
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useCallback, useEffect, useRef, useState } from "react";

import { normalizeStructTag } from "@mysten/sui.js/utils";
import BigNumber from "bignumber.js";
import { Banknote, FileClock, RotateCw, TableProperties } from "lucide-react";
import { FileClock, RotateCw, TableProperties, TrendingUp } from "lucide-react";

import { WAD } from "@suilend/sdk/constants";

Expand Down Expand Up @@ -112,7 +112,7 @@ export default function AccountDetailsDialog() {

const tabs = [
{ id: Tab.HISTORY, icon: <FileClock />, title: "History" },
{ id: Tab.EARNINGS, icon: <Banknote />, title: "Earnings" },
{ id: Tab.EARNINGS, icon: <TrendingUp />, title: "Earnings" },
];

const selectedTab =
Expand Down

0 comments on commit e427630

Please sign in to comment.