Skip to content

Commit

Permalink
Fix reloading mandates (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
tschumpr authored Sep 12, 2024
2 parents c295c88 + d55c659 commit 62808fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Geopilot.Frontend/src/pages/admin/mandates.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const Mandates = () => {
method: mandate.id === 0 ? "POST" : "PUT",
body: JSON.stringify(mandate),
errorMessageLabel: "mandateSaveError",
}).then(() => loadMandates);
}).then(loadMandates);
}

async function onSave(row: DataRow) {
Expand Down

0 comments on commit 62808fc

Please sign in to comment.