Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 40 additions & 40 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"input-otp": "^1.4.2",
"lucide-react": "^0.513.0",
"motion": "^12.16.0",
"next": "^15.3.3",
"next": "15.3.8",
Copy link

Copilot AI Mar 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

next was bumped to 15.3.8, but the repo still pins eslint-config-next to ^15.3.3 (and the lockfile currently resolves it to 15.3.3). Keeping eslint-config-next aligned with the installed Next version helps avoid rule/plugin drift; consider updating it to match the Next version you’re deploying.

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Mar 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

next is pinned to an exact version (15.3.8) while the rest of the dependencies in this file use semver ranges (mostly ^...). If the goal is to require the patched version but still allow future patch/minor updates, consider using a range like ^15.3.8 (or an explicit >=15.3.8 <16) for consistency and easier maintenance.

Suggested change
"next": "15.3.8",
"next": "^15.3.8",

Copilot uses AI. Check for mistakes.
"next-themes": "^0.4.6",
"react": "^19.1.0",
"react-day-picker": "^9.7.0",
Expand Down
Loading