import
This commit is contained in:
@@ -23,7 +23,7 @@ export const StationForm = ({ station }: { station?: Station }) => {
|
||||
<form
|
||||
onSubmit={form.handleSubmit(async (values) => {
|
||||
setLoading(true);
|
||||
const createdStation = await upsertStation(values, station?.id);
|
||||
await upsertStation(values, station?.id);
|
||||
setLoading(false);
|
||||
if (!station) redirect(`/admin/station`);
|
||||
})}
|
||||
|
||||
Reference in New Issue
Block a user