nomoreyesterday

Results 2 comments of nomoreyesterday

@DragosMoro you can use pointer-events-none like this hope this help ![image](https://github.com/shadcn-ui/ui/assets/124575074/a01f1ccc-be45-4435-9b8d-0134c0b69d67)

``` export const EmptySubmit: Story = { play: async ({ canvasElement }) => { const canvas = within(canvasElement); const SubmitButton = canvas.getByRole('button', { name: /submit/i }); await expect(SubmitButton).toBeInTheDocument(); await fireEvent.click(SubmitButton)...