Remove not needed await on global context

This commit is contained in:
Wolfsblvt 2024-07-22 09:22:02 +02:00
parent 7cbaa15aad
commit d57e43df54
1 changed files with 1 additions and 1 deletions

View File

@ -2899,7 +2899,7 @@ async function getWorldEntry(name, data, entry) {
.prop('selected', true)
.trigger('input');
await saveWorldInfo(name, data);
saveWorldInfo(name, data);
// exclude recursion
const excludeRecursionInput = template.find('input[name="exclude_recursion"]');