From 5428a058c88ca05257c295eaa9b2f87dd06fdcee Mon Sep 17 00:00:00 2001 From: Azgaar Date: Sun, 6 Feb 2022 03:08:35 +0300 Subject: [PATCH] hotfix: change path - relative --- modules/ui/stylePresets.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/stylePresets.js b/modules/ui/stylePresets.js index 0b193232..7dd38332 100644 --- a/modules/ui/stylePresets.js +++ b/modules/ui/stylePresets.js @@ -47,7 +47,7 @@ async function getStylePreset(desiredPreset) { } async function fetchSystemPreset(preset) { - const style = await fetch(`../../styles/${preset}.json`) + const style = await fetch(`./styles/${preset}.json`) .then(res => res.json()) .catch(err => { ERROR && console.error("Error on loading style preset", preset, err);