Skip to content

Commit 130bfc2

Browse files
committed
Remove display of time locked tokens
1 parent 2c46f1a commit 130bfc2

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

components/TokenSupply.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const TokenSupply = (props: ISupply) => {
99
const classCell =
1010
"text-sm text-center py-4 lg:min-h-96px border-t border-solid border-color-cell-border";
1111
return (
12-
<div className="md:grid grid-cols-4 mx-auto">
12+
<div className="md:grid grid-cols-3 mx-auto">
1313
<div className={classCell}>
1414
<h3 className={classTitle}>Locked by governance</h3>
1515
<strong>
@@ -24,10 +24,6 @@ export const TokenSupply = (props: ISupply) => {
2424
<h3 className={classTitle}>Locked rewards</h3>
2525
<strong>{noDecimals(toCurrency(props.lockedRewards))} tokens</strong>
2626
</div>
27-
<div className={classCell}>
28-
<h3 className={classTitle}>Time locked</h3>
29-
<strong>{noDecimals(toCurrency(props.timeLocked))} tokens</strong>
30-
</div>
3127
</div>
3228
);
3329
};

0 commit comments

Comments
 (0)