Skip to content

Commit

Permalink
passing lat and long as str
Browse files Browse the repository at this point in the history
  • Loading branch information
Ko71k committed Nov 25, 2024
1 parent f8e71a2 commit 8ee4e05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/modules/handleEventsActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ export async function handleCreateEventSubmit(event, pageToCome, navigate) {
event_start: dateStart,
event_end: dateEnd,
category_id: categoryId,
Latitude: latitude,
Longitude: longitude,
Latitude: `${latitude}`,
Longitude: `${longitude}`,
zoom: zoom,
};
console.log(userData);
Expand Down

0 comments on commit 8ee4e05

Please sign in to comment.