Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vectorisvector committed Nov 20, 2023
1 parent d7132c9 commit f057c29
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import {
zkSync,
linea,
okc,
fantom,
} from "viem/chains";

const chains = {
Expand All @@ -35,6 +36,7 @@ const chains = {
zkSync,
linea,
okc,
fantom,
};

type ChainKey = keyof typeof chains;
Expand Down Expand Up @@ -164,9 +166,6 @@ export default function Home() {
className=" h-[100px] w-[800px] rounded-lg border p-2"
placeholder="私钥"
disabled={running}
value={
accounts.length > 0 ? accounts.map(() => "******").join("\n") : ""
}
onChange={(e) => {
const text = e.target.value;
const lines = text.split("\n");
Expand Down

0 comments on commit f057c29

Please sign in to comment.