resolve conflict

This commit is contained in:
lenhanphung
2025-10-01 19:31:09 +07:00
parent d7c33f105d
commit 65309bba18
@@ -215,7 +215,6 @@ function CalendarSelector({
handleClose();
};
return (
<<<<<<< HEAD
<>
<div>
<label>
@@ -253,23 +252,5 @@ function CalendarSelector({
handleDeleteConfirm={handleDeleteConfirm}
/>
</>
=======
<div key={id}>
<label>
<Checkbox
style={{
color: calendars[id].color,
}}
size="small"
checked={selectedCalendars.includes(id)}
onChange={() => handleCalendarToggle(id)}
/>
{calendars[id].name}
</label>
<IconButton onClick={() => setOpen()}>
<MoreVertIcon />
</IconButton>
</div>
>>>>>>> a7e29ce (feat: prepare project for cozy-ui migration)
);
}