Spot the bug - #132: Recipe Submit Handler

Why is my secret recipe payload missing the secret spice?

const form = document.querySelector('form');
const data = new FormData(form);
data.set('spice', 'paprika');
fetch('/bake', { method: 'POST', body: new URLSearchParams(data) });

Reply with what is broken and how you would fix it.