Skip to content

Commit e6426b6

Browse files
committed
run prettier --write
1 parent b213a0b commit e6426b6

File tree

8 files changed

+12
-21
lines changed

8 files changed

+12
-21
lines changed

Diff for: .vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
22
"git.ignoreLimitWarning": true
3-
}
3+
}

Diff for: components/layout/Nav.js

+5-6
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,16 @@ export default function Nav() {
4141

4242
useEffect(() => {
4343
const handleRouteChange = () => {
44-
setActive(false)
45-
}
44+
setActive(false);
45+
};
4646

47-
router.events.on('routeChangeComplete', handleRouteChange)
47+
router.events.on('routeChangeComplete', handleRouteChange);
4848

4949
return () => {
50-
router.events.off('routeChangeComplete', handleRouteChange)
51-
}
50+
router.events.off('routeChangeComplete', handleRouteChange);
51+
};
5252
}, []);
5353

54-
5554
return (
5655
<header className={styles.header} ref={headerRef}>
5756
<Container>

Diff for: jsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"@/components/*": ["components/*"],
66
"@/styles/*": ["styles/*"],
77
"@/hooks/*": ["hooks/*"],
8-
"@/utils/*": ["utils/*"],
8+
"@/utils/*": ["utils/*"]
99
}
1010
}
11-
}
11+
}

Diff for: styles/CardsColumns.module.scss

-5
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,4 @@
1818
:global(.swiper-pagination-bullet-active) {
1919
background-color: $dark-bg-color;
2020
}
21-
2221
}
23-
24-
25-
26-

Diff for: styles/Container.module.scss

-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@
55
width: 90%;
66
max-width: $large-desktop-breakpoint;
77
}
8-

Diff for: styles/Footer.module.scss

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
}
2424

2525
&__nav {
26-
2726
@include tablet {
2827
min-width: 6.5rem;
2928
order: 2;
@@ -44,7 +43,7 @@
4443

4544
&__navItem {
4645
margin: 0.5rem 0;
47-
46+
4847
@include tablet {
4948
padding-left: 50px;
5049
}

Diff for: styles/Newsletter.module.scss

+2-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
color: $primary-content-color;
4141
margin: 0;
4242
white-space: nowrap;
43-
display:flex;
43+
display: flex;
4444
gap: 0.5rem;
4545

4646
@include medium-desktop {
@@ -54,7 +54,7 @@
5454
}
5555
}
5656

57-
&__right_chevron{
57+
&__right_chevron {
5858
position: relative;
5959
top: 0.1rem;
6060

@@ -65,7 +65,6 @@
6565
width: 1.5rem !important;
6666
height: 1.5rem !important;
6767
}
68-
6968
}
7069
}
7170

Diff for: styles/_mixins.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@
5555
@media (max-width: $sm-mobile-breakpoint) {
5656
@content;
5757
}
58-
}
58+
}

0 commit comments

Comments
 (0)