Skip to content

Commit

Permalink
fix: process pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
iehkaatee committed Nov 7, 2024
1 parent e020c89 commit 7eb36dd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const IncidentSummaryForm = () => {
location: {
geometrie: {
type: _NestedLocationModel.type.POINT,
coordinates: [5.0604774524196685, 52.09154226805159], //todo: niet vergeten weg te halen!
coordinates: formState.coordinates,
},
},
// @ts-ignore
Expand Down Expand Up @@ -77,7 +77,7 @@ const IncidentSummaryForm = () => {
const formData = new FormData()
formData.append('signal_id', signalId)
formData.append('file', attachment)
await postAttachments(signalId, formData)
return postAttachments(signalId, formData)
})
)
} catch (e) {
Expand Down

0 comments on commit 7eb36dd

Please sign in to comment.