Update GroupViewPage.tsx

This commit is contained in:
2026-09-05 00:57:13 +09:00
committed by GitHub
parent f8ccc87edc
commit 72cd203c25
+1 -1
View File
@@ -64,7 +64,7 @@ export default function GroupViewPage() {
const assetName = defaultModPack.exportManifest.assets.defines; const assetName = defaultModPack.exportManifest.assets.defines;
(async () => { (async () => {
const response = await fetch(`${staticRoot}static/${assetName}`); const response = await fetch(`${staticRoot}${assetName}`);
const json = await response.json(); const json = await response.json();
setDefinesJson(json.input_action ?? {}); setDefinesJson(json.input_action ?? {});
})().catch(notifyErrorHandler("Failed to load permissions")); })().catch(notifyErrorHandler("Failed to load permissions"));