Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostffcode committed Jul 30, 2022
1 parent 169d6ea commit d1c87a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/react-app/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ function App(props) {
return (
<div className="App">
{/* ✏️ Edit the header and change the title to your project name */}
<Header>
<Header title="🆔🤑 ID Staking" subTitle="Stake GTC on your Identity" link="/">
{/* 👨‍💼 Your account is in the top right with a wallet at connect options */}
<div style={{ position: "relative", display: "flex", flexDirection: "column" }}>
<div style={{ display: "flex", flex: 1 }}>
Expand Down
2 changes: 1 addition & 1 deletion packages/react-app/src/views/Stakes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function Stakes({ readContracts, localProvider, mainnetProvider }) {
</div>
<div>
{stakeLogs.map(stake => (
<Typography.Paragraph>
<Typography.Paragraph key={stake.transactionHash}>
Round {stake.args.roundId?.toString()}:{" "}
<Address ensProvider={mainnetProvider} fontSize={14} address={stake.args.staker} />{" "}
{stake.args.staked ? "staked" : "unstaked"} {ethers.utils.formatUnits(stake.args.amount)} {tokenSymbol} on{" "}
Expand Down

0 comments on commit d1c87a6

Please sign in to comment.