I have the following code
const wasms: Record<string, NoSerialize<ArrayBuffer>> = useStore({}, {deep: true});
And then later I do a map on this
{Object.entries(wasms).map(([name, bytes]) => <button onClick$={async () => {
but before hand I update wasms like so
wasms[file.name] = noSerialize(bytes);
And the update isn't causing the list of buttons to rerender. Am I doing this properly?