From 0c10cfa32050e905c96dfcadd85f4beefed13df0 Mon Sep 17 00:00:00 2001 From: skidoodle Date: Wed, 10 Dec 2025 16:50:59 +0100 Subject: [PATCH] Fix missing comma in projects array Signed-off-by: skidoodle --- src/components/projects.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/projects.astro b/src/components/projects.astro index 56016cc..572fd6f 100644 --- a/src/components/projects.astro +++ b/src/components/projects.astro @@ -3,7 +3,7 @@ const projects = [ { name: "spotify-ws", url: "https://github.com/skidoodle/spotify-ws", desc: "Gets now-playing-song from Spotify with WebSockets." }, { name: "ipinfo", url: "https://github.com/skidoodle/ipinfo", desc: "Shows details about any IP address or ASN." }, { name: "hostinfo", url: "https://github.com/skidoodle/hostinfo", desc: "Browser extension showing website origin details." }, - { name: "mediaproxy", url: "https://github.com/skidoodle/mediaproxy" desc: "Proxy for caching and optimizing media." }, + { name: "mediaproxy", url: "https://github.com/skidoodle/mediaproxy", desc: "Proxy for caching and optimizing media." }, { name: "pastebin", url: "https://github.com/skidoodle/pastebin", desc: "Another simple pastebin app." }, { name: "albert.lol", url: "https://github.com/skidoodle/albert.lol", desc: "You're looking at it, built with Astro." }, { name: "budgetable", url: "https://github.com/skidoodle/budgetable", desc: "Tracks items to buy later." },