From 7f828204ab0ad6dacf020bbe5a5c27ff53d18236 Mon Sep 17 00:00:00 2001 From: Cassiano D'Andrea Date: Fri, 26 Sep 2025 01:12:46 -0300 Subject: [PATCH] Displaying p5.js version in About page --- client/modules/About/pages/About.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/modules/About/pages/About.jsx b/client/modules/About/pages/About.jsx index ab069f5812..40a8852333 100644 --- a/client/modules/About/pages/About.jsx +++ b/client/modules/About/pages/About.jsx @@ -52,7 +52,7 @@ const About = () => { const p5version = useSelector((state) => { const index = state.files.find((file) => file.name === 'index.html'); - return index?.content.match(/\/p5\.js\/([\d.]+)\//)?.[1]; + return index?.content.match(/\/p5@([\d.]+)\//)?.[1]; }); return (