hi, i got a problem if toast is set to loader in root.tsx file there is double request after submit
example code
export function action() {
return redirectWithToast('/sign-in', { message: 'User created successfully', type: 'success' }, {
status: 201,
})
}
export default function SignUp() {
return (
<Form
className="flex flex-col gap-4"
method="POST"
>
<Button type="submit">Test</Button>
</Form>
)
}

hi, i got a problem if toast is set to loader in
root.tsxfile there is double request after submitexample code