Skip to content

Commit

Permalink
fix presets path
Browse files Browse the repository at this point in the history
  • Loading branch information
panr committed Nov 30, 2024
1 parent fc27a14 commit 7c6119c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/presets.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { isDark } from "./helpers.js";

export const presetsInput = document.querySelector("#presets");

const res = await fetch("/presets.json");
const res = await fetch("./presets.json");
const presets = await res.json();

// At the moment it takes less than 1ms to create a grouped list of presets.
Expand Down

0 comments on commit 7c6119c

Please sign in to comment.