Skip to content

Commit

Permalink
use right bridget version to determine if horizontal scrolling is sup…
Browse files Browse the repository at this point in the history
…ported
  • Loading branch information
marjisound committed Jan 22, 2025
1 parent 4f043a6 commit 2c98164
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,6 @@ export const OnwardsUpper = ({
absoluteServerTimes,
renderingTarget,
}: Props) => {

const isHorizontalScrollingSupported = useIsHorizontalScrollingSupported();

if (!isHorizontalScrollingSupported) return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const useIsHorizontalScrollingSupported = (): boolean => {
useEffect(() => {
if (renderingTarget === 'Apps') {
// TODO: update version after new bridget patch is published
void hasMinimumBridgetVersion('8.1.0').then(
void hasMinimumBridgetVersion('8.3.2').then(
setHorizontalScrollingSupported,
);
}
Expand Down

0 comments on commit 2c98164

Please sign in to comment.