Skip to content

Commit

Permalink
Fix carousel in outdoor and touristicEvent pages details
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrucs committed Jun 19, 2023
1 parent 993f176 commit 7c2d833
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/pages/site/OutdoorCourseUI.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ export const OutdoorCourseUIWithoutContext: React.FC<Props> = ({ outdoorCourseUr
)}
</>
),
[outdoorCourseContent, isLoading, mobileMapState],
[outdoorCourseContent, isLoading, mobileMapState, hasNavigator],
);
};

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/pages/site/OutdoorSiteUI.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ const OutdoorSiteUIWithoutContext: React.FC<Props> = ({ outdoorSiteUrl, language
)}
</>
),
[outdoorSiteContent, isLoading, mobileMapState],
[outdoorSiteContent, isLoading, mobileMapState, hasNavigator],
);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ export const TouristicEventUIWithoutContext: React.FC<Props> = ({
)}
</>
),
[touristicEventContent, isLoading, mobileMapState],
[touristicEventContent, isLoading, mobileMapState, hasNavigator],
);
};

Expand Down

0 comments on commit 7c2d833

Please sign in to comment.