Skip to content

Commit

Permalink
update url speedrunStarknet in challenge view
Browse files Browse the repository at this point in the history
  • Loading branch information
karlavasquez8 committed Apr 17, 2024
1 parent 0ad7eec commit 0faeb72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/nextjs/app/challenge/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const PageView: React.FC = () => {
useEffect(() => {
const getMarkdown = async () => {
const response = await fetch(
`https://raw.githubusercontent.com/scaffold-eth/se-2-challenges/${id}/README.md`,
`https://raw.githubusercontent.com/Quantum3-Labs/speedrunstark/${id}/README.md`,
);
const markdownData = await response.text();
setMarkdown(markdownData);
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/data-challenges/challenges.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const allChallenges = [
"🎫 Create a simple NFT to learn basics of scaffold-Stark. You'll use 👷‍♀️ HardHat to compile and deploy smart contracts. Then, you'll use a template React app full of important Ethereum components and hooks. Finally, you'll deploy an NFT to a public network to share with friends! 🚀",
imageUrl: "/simpleNFT.png",
end: true,
id: "challenge-0-simple-nft",
id: "challenge0",
},
{
challenge: "Challenge #1",
Expand Down

0 comments on commit 0faeb72

Please sign in to comment.