Skip to content

Commit

Permalink
๐Ÿš‘ Fix: ์ˆ˜์ • - Swiper์˜ loop ์†์„ฑ์œผ๋กœ ์ธํ•œ ์ด์ƒ ๋™์ž‘ ์ˆ˜์ •
Browse files Browse the repository at this point in the history
Fixes: #6, #32
  • Loading branch information
sobinibani committed Aug 22, 2024
1 parent 7213fba commit 50f6603
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion src/components/BDPlace/RecoPlace.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function RecoPlace() {
spaceBetween={0}
centeredSlides={true}
speed={500}
loop={true}
loop={false}
pagination={{
clickable: true,
}}
Expand All @@ -36,6 +36,12 @@ export default function RecoPlace() {
<SwiperSlide>
<RecoPlaceItem />
</SwiperSlide>
<SwiperSlide>
<RecoPlaceItem />
</SwiperSlide>
<SwiperSlide>
<RecoPlaceItem />
</SwiperSlide>
</Swiper>

<style>{`
Expand Down
2 changes: 1 addition & 1 deletion src/page/Home/BDInfoPopular.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function BDInfoPopular() {
spaceBetween={0}
centeredSlides={true}
speed={500}
loop={true}
loop={false}
pagination={{
clickable: true,
}}
Expand Down

0 comments on commit 50f6603

Please sign in to comment.