Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
amcdnl committed Jul 26, 2024
1 parent 57b0b48 commit 9ca827d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SessionsList/SessionGroups.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ export interface SessionGroupsProps {
export const SessionGroups: FC<SessionGroupsProps> = ({ children }) => {
const { sessions } = useContext(SessionsContext);
const groups = useMemo(() => groupSessionsByDate(sessions), [sessions]);
return children(groups);
return <>{children(groups)}</>;
};

0 comments on commit 9ca827d

Please sign in to comment.