Fix calendar events right drawer empty fields (#6271)

Fix calendar events right drawer empty fields
This commit is contained in:
bosiraphael
2024-07-16 10:30:18 +02:00
committed by GitHub
parent 364caf0fdf
commit 2218e20595
2 changed files with 33 additions and 1 deletions

View File

@ -0,0 +1,23 @@
import { CalendarEvent } from '@/activities/calendar/types/CalendarEvent';
import { useUpsertRecordsInStore } from '@/object-record/record-store/hooks/useUpsertRecordsInStore';
import { useEffect } from 'react';
type CalendarEventDetailsEffectProps = {
record: CalendarEvent;
};
export const CalendarEventDetailsEffect = ({
record,
}: CalendarEventDetailsEffectProps) => {
const { upsertRecords } = useUpsertRecordsInStore();
useEffect(() => {
if (!record) {
return;
}
upsertRecords([record]);
}, [record, upsertRecords]);
return <></>;
};