File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
25
25
- Header.js component
26
26
- reCAPTCHA
27
27
- useIntersect Hook, Reveal container for scrolling using intersection API
28
+ - A new swipable feature on CardColumns.js
28
29
29
30
### Fixed
30
31
@@ -38,6 +39,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
38
39
- normalized buttons' and links' styling
39
40
- updated ` package.json ` commands for macOs
40
41
41
- ### changed
42
42
43
- - Prompt cards are now swipable. (Home page)
Original file line number Diff line number Diff line change
1
+ import { Swiper , SwiperSlide } from 'swiper/react' ;
2
+ import 'swiper/css' ;
1
3
import Card from './Card' ;
2
4
import Container from './Container' ;
3
- import { Swiper , SwiperSlide } from 'swiper/react' ;
4
5
import styles from '../styles/CardsColumns.module.scss' ;
5
- import 'swiper/css' ;
6
6
7
7
export default function CardsColumns ( {
8
8
images,
@@ -13,7 +13,6 @@ export default function CardsColumns({
13
13
linkText,
14
14
} ) {
15
15
return (
16
- < >
17
16
< Container >
18
17
< Swiper
19
18
mousewheel = { true }
@@ -53,6 +52,5 @@ export default function CardsColumns({
53
52
54
53
</ Swiper >
55
54
</ Container >
56
- </ >
57
55
) ;
58
56
}
You can’t perform that action at this time.
0 commit comments