From 72cd203c2503d15e27d824db51f019f1f31c3ab4 Mon Sep 17 00:00:00 2001 From: PHIDIAS Date: Sat, 5 Sep 2026 00:57:13 +0900 Subject: [PATCH] Update GroupViewPage.tsx --- exp_groups/web/components/GroupViewPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exp_groups/web/components/GroupViewPage.tsx b/exp_groups/web/components/GroupViewPage.tsx index 7574cfa2..1d5d31fe 100644 --- a/exp_groups/web/components/GroupViewPage.tsx +++ b/exp_groups/web/components/GroupViewPage.tsx @@ -64,7 +64,7 @@ export default function GroupViewPage() { const assetName = defaultModPack.exportManifest.assets.defines; (async () => { - const response = await fetch(`${staticRoot}static/${assetName}`); + const response = await fetch(`${staticRoot}${assetName}`); const json = await response.json(); setDefinesJson(json.input_action ?? {}); })().catch(notifyErrorHandler("Failed to load permissions"));