File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 21
21
registry-url : " https://registry.npmjs.org/"
22
22
23
23
- name : Install dependencies
24
- run : npm install
24
+ run : npm install --legacy-peer-deps
25
25
26
26
- name : Run Tests
27
27
run : npm run test -- --watchAll=false
Original file line number Diff line number Diff line change 11
11
uses : actions/checkout@v4
12
12
13
13
- name : Install dependencies
14
- run : npm install
14
+ run : npm install --legacy-peer-deps
15
15
16
16
- name : Login to GitHub Pages
17
17
run : echo "//npm.pkg.github.com/:_authToken=${{secrets.GITHUB_TOKEN}}" >> ~/.npmrc
Original file line number Diff line number Diff line change @@ -95,7 +95,8 @@ function Carousel({
95
95
96
96
React . useEffect ( ( ) => {
97
97
if ( ! api ) return ;
98
- onSelect ( api ) ;
98
+
99
+ onSelect ( ) ;
99
100
api . on ( "reInit" , onSelect ) ;
100
101
api . on ( "select" , onSelect ) ;
101
102
You can’t perform that action at this time.
0 commit comments