From 9ca827df23fb030b113aeddc16acbed8daff9dc3 Mon Sep 17 00:00:00 2001 From: amcdnl Date: Fri, 26 Jul 2024 09:10:18 -0400 Subject: [PATCH] fix type --- src/SessionsList/SessionGroups.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SessionsList/SessionGroups.tsx b/src/SessionsList/SessionGroups.tsx index 2128005..8f9d921 100644 --- a/src/SessionsList/SessionGroups.tsx +++ b/src/SessionsList/SessionGroups.tsx @@ -10,5 +10,5 @@ export interface SessionGroupsProps { export const SessionGroups: FC = ({ children }) => { const { sessions } = useContext(SessionsContext); const groups = useMemo(() => groupSessionsByDate(sessions), [sessions]); - return children(groups); + return <>{children(groups)}; };