Merge origin/main into frontend parity worktree
This commit is contained in:
@@ -8,19 +8,19 @@ export const composeCalendarHandlers = (
|
||||
return undefined;
|
||||
}
|
||||
return {
|
||||
beforeMonthChanged: (context) => {
|
||||
beforeMonthChanged: async (context) => {
|
||||
for (const handler of resolved) {
|
||||
handler.beforeMonthChanged?.(context);
|
||||
await handler.beforeMonthChanged?.(context);
|
||||
}
|
||||
},
|
||||
onMonthChanged: (context) => {
|
||||
onMonthChanged: async (context) => {
|
||||
for (const handler of resolved) {
|
||||
handler.onMonthChanged?.(context);
|
||||
await handler.onMonthChanged?.(context);
|
||||
}
|
||||
},
|
||||
onYearChanged: (context) => {
|
||||
onYearChanged: async (context) => {
|
||||
for (const handler of resolved) {
|
||||
handler.onYearChanged?.(context);
|
||||
await handler.onYearChanged?.(context);
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user