From 0847cd4867821b8eaa9237099b6c6d94140fcb18 Mon Sep 17 00:00:00 2001 From: yzamir Date: Sat, 30 Sep 2023 23:55:58 +0300 Subject: [PATCH] type-fix-3 Signed-off-by: yzamir --- public/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/app.js b/public/js/app.js index 8227e09..5469340 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -186,7 +186,7 @@ function app() { async function handleExamplesTableClick(event) { // Construct the URL to the file - const fileUrl = `./examples/${event.detail.value}`; + const fileUrl = `./js/examples/${event.detail.value}`; try { const response = await fetch(fileUrl);