Skip to content

Commit 84d93a2

Browse files
committed
fix: comment console.log
1 parent a1409e3 commit 84d93a2

File tree

4 files changed

+23
-7
lines changed

4 files changed

+23
-7
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,23 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7-
#### [v0.1.0](https://github.com/ahmnouira/ionic-react-header-parallax/compare/v0.1.0...v0.1.0)
7+
#### [v0.1.2](https://github.com/ahmnouira/ionic-react-header-parallax/compare/v0.1.2...v0.1.2)
8+
9+
#### [v0.1.2](https://github.com/ahmnouira/ionic-react-header-parallax/compare/v0.1.1...v0.1.2)
10+
11+
> 20 August 2021
12+
13+
- fix: remove unused variables [`9eb88ee`](https://github.com/ahmnouira/ionic-react-header-parallax/commit/9eb88ee6f2344efffdd5813cc855131b93623fb9)
14+
- docs: fix readme [`783300f`](https://github.com/ahmnouira/ionic-react-header-parallax/commit/783300f3ac9b28c5dc1f7b942db0fdbe4cd3c96f)
15+
- docs: fix description [`c7f3ca6`](https://github.com/ahmnouira/ionic-react-header-parallax/commit/c7f3ca66d4cbfb4ecd0a6a74375f0eb88f92807c)
16+
17+
#### [v0.1.1](https://github.com/ahmnouira/ionic-react-header-parallax/compare/v0.1.0...v0.1.1)
18+
19+
> 20 August 2021
20+
21+
- fix: fixes [`6c85bf5`](https://github.com/ahmnouira/ionic-react-header-parallax/commit/6c85bf57847aced910d4ca08e8392234f6e57cc0)
22+
- update changelog [`ec758a9`](https://github.com/ahmnouira/ionic-react-header-parallax/commit/ec758a9537171a10eb751569d05c2743f16a3f0e)
23+
- style: format code [`95419a2`](https://github.com/ahmnouira/ionic-react-header-parallax/commit/95419a2db5ce5f342c8b44a83f1d7c345f432652)
824

925
#### [v0.1.0](https://github.com/ahmnouira/ionic-react-header-parallax/compare/v0.0.8...v0.1.0)
1026

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@types/react-router": "5.1.16",
1616
"@types/react-router-dom": "5.1.8",
1717
"babel-jest": "^26.6.0",
18-
"ionic-react-header-parallax": "^0.1.1",
18+
"ionic-react-header-parallax": "^0.1.2",
1919
"ionicons": "5.5.3",
2020
"react": "17.0.2",
2121
"react-dom": "17.0.2",

example/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5934,10 +5934,10 @@ internal-slot@^1.0.3:
59345934
has "^1.0.3"
59355935
side-channel "^1.0.4"
59365936

5937-
ionic-react-header-parallax@^0.1.1:
5938-
version "0.1.1"
5939-
resolved "https://registry.yarnpkg.com/ionic-react-header-parallax/-/ionic-react-header-parallax-0.1.1.tgz#13b0c3579ecc2aa84746345f05c686644edb3d11"
5940-
integrity sha512-pDUvPObUmFaGamFrFK3Vnz6eJ8PIFjaZwe3744rvxWNj5bdsSQXO8lwaJGdH4jKK5UCNd3dA+3OkSgUwXQVGyw==
5937+
ionic-react-header-parallax@^0.1.2:
5938+
version "0.1.2"
5939+
resolved "https://registry.yarnpkg.com/ionic-react-header-parallax/-/ionic-react-header-parallax-0.1.2.tgz#c3bc18851a44f9e6ab9a4b7491c9fb73e14e09ea"
5940+
integrity sha512-H8eUoyr2q58s5AGhU/VDwLRNt8IAfgBVg/V7fdqFp8R/hBsLg/bI6gOr8gM/JuncLzjrKm2D4xOeUrQyZetR0g==
59415941

59425942
ionicons@5.5.3, ionicons@^5.1.2, ionicons@^5.5.3:
59435943
version "5.5.3"

src/useIonicHeaderParallax.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export function useIonHeaderParallax({
138138
barButtons.style.pointerEvents = 'all'
139139

140140
Array.from(barButtons.children).forEach((btn) => {
141-
console.log(btn, btn as HTMLElement)
141+
// console.log(btn, btn as HTMLElement)
142142
const htmlBtn = btn as HTMLElement
143143
htmlBtn.style.color = titleColor
144144
})

0 commit comments

Comments
 (0)