Editing calendar events

- Added new hook for updating events
- Updated the selected event in db
- Added document id as id to the event object when fetching events
- Removed unused react-native-google sign-in library
This commit is contained in:
Dejan
2024-10-11 13:24:25 +02:00
parent 7d9d41acfc
commit 562da49806
6 changed files with 39 additions and 42 deletions

View File

@ -31,6 +31,7 @@ export const useGetEvents = (isFamilyView: boolean) => {
const eventColor: string = profileData?.eventColor || colorMap.pink // Default color if not found
return {
id: doc.id,
title: data.title,
start: new Date(data.startDate.seconds * 1000),
end: new Date(data.endDate.seconds * 1000),