delete stray console.log

This commit is contained in:
sam 2024-12-19 16:24:17 +01:00
parent 661c3eab0f
commit 3f8f6d0f23
Signed by: sam
GPG key ID: B4EF20DDE721CAA1

View file

@ -48,7 +48,6 @@
const idx = flags.findIndex((f) => f.id === id); const idx = flags.findIndex((f) => f.id === id);
if (idx === -1) return; if (idx === -1) return;
console.log("yippee");
flags[idx] = { ...flags[idx], name, description }; flags[idx] = { ...flags[idx], name, description };
} catch (e) { } catch (e) {
log.error("Could not update flag %s:", id, e); log.error("Could not update flag %s:", id, e);