Skip to content

Commit

Permalink
Fix icons
Browse files Browse the repository at this point in the history
  • Loading branch information
jkilpatr committed Nov 16, 2024
1 parent 0604b38 commit 6cf8c61
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
Binary file removed althea-info-dash/public/favicon.ico
Binary file not shown.
Binary file modified althea-info-dash/public/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified althea-info-dash/public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 2 additions & 4 deletions althea-info-dash/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ import {
CardBody,
CardTitle,
Card,
CardSubtitle,
Table,
} from "reactstrap";
import { ChainTotalSupplyNumbers } from './types';
// 5 seconds
const UPDATE_TIME = 5000;

const BACKEND_PORT = 9000;
export const SERVER_URL =
"https://" + window.location.hostname + ":" + BACKEND_PORT + "/";
"http://" + window.location.hostname + ":" + BACKEND_PORT + "/";

function App() {
document.title = "Althea L1 Info"
Expand Down Expand Up @@ -68,7 +66,7 @@ function App() {
<Card className="ParametersCard" style={{ borderRadius: 8, padding: 25 }}>
<CardBody>
<CardTitle tag="h1">
Gravity Supply Info
Althea L1 Supply Info
</CardTitle>
<div style={{ fontSize: 15 }}>Total Supply: {(supplyInfo.total_supply / 10 ** 24).toFixed(2)}M ALTHEA</div>
<div style={{ fontSize: 15 }}>Community Pool: {(supplyInfo.community_pool / 10 ** 24).toFixed(2)}M ALTHEA</div>
Expand Down

0 comments on commit 6cf8c61

Please sign in to comment.