irving armenta

Results 3 comments of irving armenta

@christopher-caldwell I know this is the actual "opposite" of what you need, but I am making my schema and my form values "tighter" with a helper function to create and...

@unadlib Perhaps the issue was not clear but `original()` does not seem work, since the data becomes the same as "drafted" I mean, the data gets mutated, it does not...

In this example: ```tsx setOrdersData((draft) => { const origin = original(draft.data); expect(origin).toBe(dataRowsMockData); draft.data = origin.filter((order) => order.coin === data.id); expect(origin).not.toBe(draft.data); // Will this pass? }); ``` The next time I...