Skip to content

Commit

Permalink
chore: fix burner and wikipedia sections
Browse files Browse the repository at this point in the history
  • Loading branch information
Darlington02 committed Apr 23, 2024
1 parent 01ebf69 commit f923691
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 1 addition & 2 deletions frontend/src/app/components/Burner/Burner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const Burners: React.FC = () => {
</b>
</h2>
<br />

<BurnerWallet />
<h3 className="font-bold text-start">Burner Wallets:</h3>
{wallets.map((wallet, index) => (
<div key={index} className="flex flex-col gap-2 p-2 border-2">
Expand All @@ -116,7 +116,6 @@ const Burners: React.FC = () => {
<p>Account Address: {wallet.address}</p>
</div>
))}
<BurnerWallet />
<button
className="mt-4 p-2 bg-blue-500 text-white rounded"
onClick={handleCreate}
Expand Down
8 changes: 8 additions & 0 deletions frontend/src/app/wikipedia/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,14 @@ async function getData(): Promise<Resource[]> {
status: "Up to date",
url: "https://www.ethereum-ecosystem.com/blockchains/starknet",
},
{
id: "55",
name: "The Cairo Book",
description:
"Official Cairo documentation by the community",
status: "Up to date",
url: "https://book.cairo-lang.org/",
},
];
}

Expand Down

0 comments on commit f923691

Please sign in to comment.