[d] remove some comments

This commit is contained in:
Sangelo 2024-06-12 14:07:31 +02:00
parent 23a583b0bd
commit 517b7d33a2

View file

@ -39,11 +39,11 @@
// Create Fuse instances for fuzzy search
fuseMods = new Fuse(mods.mods, {
keys: ["name", "description"],
threshold: 0.4 // Adjust the threshold as needed
threshold: 0.4
});
fuseOptionalMods = new Fuse(mods.optional_mods, {
keys: ["name", "description"],
threshold: 0.4 // Adjust the threshold as needed
threshold: 0.4
});
}