don't fallback to first style if none specified

This commit is contained in:
Henry Jameson 2024-11-28 18:09:42 +02:00
parent 89b916da28
commit 406b973654

View file

@ -339,6 +339,9 @@ const interfaceMod = {
let fetchFunc = index[result.nameUsed]
// Fallbacks
if (!fetchFunc) {
if (resource === 'style' || resource === 'palette') {
return result
}
const newName = Object.keys(index)[0]
fetchFunc = index[newName]
console.warn(`${capitalizedResource} with id '${state.styleNameUsed}' not found, trying back to '${newName}'`)