We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nope
9.4.0 introduced this bug. I am not using freeMode, just Swiper virtual The issue happens when I want to use my finger to slide.
Downgrading back to 9.3.2 fixed the issue.
<Swiper modules={[Virtual, Keyboard, Mousewheel]} height={windowHeight} width={windowWidth} keyboard initialSlide={clamp(initialScrollIndex, 0, data.length - 1)} virtual={{ enabled: true, addSlidesBefore: 1, addSlidesAfter: 2, cache: false, }} direction="vertical" onRealIndexChange={onRealIndexChange} onReachEnd={fetchMore} threshold={isMobileWeb() ? 0 : 25} noSwiping noSwipingClass="swiper-no-swiping" mousewheel={{ noMousewheelClass: "swiper-no-swiping", sensitivity: 1.1, thresholdTime: 800, }} > {data.map((item, index) => ( <SwiperSlide key={item.nft_id} virtualIndex={index}> <ItemKeyContext.Provider value={index}> <FeedItem nft={item} itemHeight={windowHeight} /> </ItemKeyContext.Provider> </SwiperSlide> ))} </Swiper>
Being able to swipe up and down (single item, full height like tiktok)
TypeError: undefined is not an object(evaluating swiper.freeMode.onTouchMove)
9.4.0
iOS 16.4.1
The text was updated successfully, but these errors were encountered:
Seems that commit is causing this: abe1ec7
Sorry, something went wrong.
I also encountered this issue: Uncaught TypeError: Cannot read properties of undefined (reading 'onTouchMove') at Swiper.onTouchMove
version: 9.4.0
I'm getting the same issue. Any fix?
Encountering the same error. Next v13.4.4, Swiper v9.4.0. Nothing special props wise, other than using the EffectCoverflow module.
v13.4.4
v9.4.0
EffectCoverflow
Downgrading to v9.3.2 fixed the issue for me. Unless you need something in v9.4.0 @beyourahi maybe downgrade for now.
v9.3.2
581eea8
No branches or pull requests
Check that this is really a bug
Reproduction link
Nope
Bug description
9.4.0 introduced this bug. I am not using freeMode, just Swiper virtual
The issue happens when I want to use my finger to slide.
Downgrading back to 9.3.2 fixed the issue.
Expected Behavior
Being able to swipe up and down (single item, full height like tiktok)
Actual Behavior
TypeError: undefined is not an object(evaluating swiper.freeMode.onTouchMove)
Swiper version
9.4.0
Platform/Target and Browser Versions
iOS 16.4.1
Validations
Would you like to open a PR for this bug?
The text was updated successfully, but these errors were encountered: