Skip to content

Commit 51f7234

Browse files
committed
update deps
1 parent deb7dbf commit 51f7234

File tree

3 files changed

+105
-44
lines changed

3 files changed

+105
-44
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@
2929
"react-awesome-reveal": "4.3.1",
3030
"react-content-loader": "7.1.1",
3131
"react-dom": "19.2.0",
32-
"react-github-calendar": "4.5.11",
32+
"react-github-calendar": "5.0.0",
3333
"react-gtm-module": "2.0.11",
3434
"react-i18next": "16.3.5",
3535
"react-intersection-observer": "10.0.0",
3636
"react-responsive-carousel": "3.2.23",
3737
"react-transition-group": "4.4.5",
3838
"react-typist": "2.0.5",
3939
"rehype-mdx-code-props": "3.0.1",
40-
"tailwind-merge": "3.3.1"
40+
"tailwind-merge": "3.4.0"
4141
},
4242
"devDependencies": {
4343
"@next/bundle-analyzer": "15.5.4",
4444
"@types/node": "22.8.2",
45-
"@types/react": "19.2.2",
46-
"@types/react-dom": "19.2.2",
45+
"@types/react": "19.2.6",
46+
"@types/react-dom": "19.2.3",
4747
"@types/react-gtm-module": "2.0.4",
4848
"@types/react-transition-group": "4.4.11",
4949
"@types/react-typist": "2.0.6",

pnpm-lock.yaml

Lines changed: 98 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/CustomGithubCalendar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use client';
2-
import GithubCalendar from 'react-github-calendar';
2+
import {GitHubCalendar} from 'react-github-calendar';
33
import NextLink from './basic/NextLink';
44
import {useTranslation} from '@/app/i18n/client';
55
import {Zoom} from 'react-awesome-reveal';
@@ -28,13 +28,13 @@ export default function CustomGithubCalendar() {
2828
</p>
2929

3030
<div className="max-w-lg overflow-x-auto pb-4 sm:max-w-6xl [&_.react-activity-calendar]:px-10">
31-
<GithubCalendar
31+
<GitHubCalendar
3232
username="codegino"
3333
fontSize={30}
3434
blockMargin={4}
3535
blockRadius={1}
3636
blockSize={12}
37-
></GithubCalendar>
37+
></GitHubCalendar>
3838
</div>
3939
</div>
4040
</Zoom>

0 commit comments

Comments
 (0)