Skip to content

Commit

Permalink
fixed subspace name not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
hero101 committed Nov 8, 2024
1 parent 0e67cec commit d87e708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/domain/timeline/calendar/CalendarEventsContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export interface CalendarEventsEntities {

export const CalendarEventsContainer: FC<CalendarEventsContainerProps> = ({ journeyId, parentJourneyId, children }) => {
const { data: spaceData, loading } = useSpaceCalendarEventsQuery({
variables: { spaceId: journeyId!, includeSubspace: Boolean(parentJourneyId) },
variables: { spaceId: journeyId!, includeSubspace: !Boolean(parentJourneyId) },
skip: !journeyId,
});

Expand Down

0 comments on commit d87e708

Please sign in to comment.