Comment out navigation to tasks after successful form submission in TaskFormPage to prevent unintended redirects during testing.

This commit is contained in:
2025-12-14 16:25:35 +03:00
parent d0e26b02c7
commit a748e608cf

View File

@@ -130,7 +130,7 @@ export const TaskFormPage: React.FC = () => {
type: 'success',
})
}
navigate(URLs.tasks)
// navigate(URLs.tasks)
} catch (err: unknown) {
const errorMessage =
(err && typeof err === 'object' && 'data' in err &&