Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/pages/DeveloperLove.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ import LoveNote from './LoveNote.astro'
// 6. If you're satisfied, in the top-right corner, click on the "Propose changes" button and then "Fork & commit changes". A new browser tab will open.
// 7. Click on the "Create pull request" and...
// CONGRATULATIONS! 🥳 You've edited this file!

<LoveNote
githubUsername="GrandJiraiya"
message="Building Crash_Out_Crypto! Look me up anywhere."
/>
Comment on lines +15 to +18

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P0 Badge Move LoveNote markup out of Astro frontmatter

The new <LoveNote> invocation was inserted before the closing ---, which is Astro’s frontmatter block. Frontmatter is parsed as plain JavaScript/TypeScript; JSX markup is not allowed there, so the file will now fail to compile and block the page from rendering. The component should be placed after the second --- with the other notes.

Useful? React with 👍 / 👎.

---

<LoveNote
Expand Down