Skip to content

Commit c226871

Browse files
committed
Update 1.5.02 - Fix fetch path for loading default data (This is the one)
1 parent 9758034 commit c226871

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

JS/glyphgeneratorV3.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let validItemsProcessed = 0;
1919

2020
const loadDefaultData = async () => {
2121
try {
22-
const response = await fetch("/public/assets/defaultData/defaultData.json");
22+
const response = await fetch("/NMSGlyphRandomizer/public/assets/defaultData/defaultData.json");
2323
if (!response.ok) throw new Error("Could not load defaultData.json");
2424
const data = await response.json();
2525

0 commit comments

Comments
 (0)