Skip to content

Commit

Permalink
fix: Theme switch issue (#11063)
Browse files Browse the repository at this point in the history
<!--
Before opening a pull request, please read the [contributing
guidelines](https://github.com/pancakeswap/pancake-frontend/blob/develop/CONTRIBUTING.md)
first
-->


<!-- start pr-codex -->

---

## PR-Codex overview
This PR focuses on updating the `dependencies` and `devDependencies` in
the `package.json` and `pnpm-lock.yaml` files, primarily upgrading
versions of `react`, `react-dom`, `typescript`, and various `@types`
packages, along with changing the version of `next`.

### Detailed summary
- Updated `react` to `^18.2.0` and `react-dom` to `^18.2.0` in
`package.json`.
- Changed `next` version to `catalog:` in `package.json`.
- Updated `typescript` to `5.2.2` and various `@types` packages in
`devDependencies`.
- Adjusted `pnpm-lock.yaml` to reflect updated versions for
dependencies.
- Removed references to `[email protected]` and cleaned up optional
dependencies.

> ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your
question}`

<!-- end pr-codex -->
  • Loading branch information
memoyil authored Dec 18, 2024
1 parent eaa1fc3 commit 66cbdcb
Show file tree
Hide file tree
Showing 2 changed files with 183 additions and 267 deletions.
14 changes: 7 additions & 7 deletions apps/ton/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
"lint": "next lint"
},
"dependencies": {
"react": "^18",
"react-dom": "^18",
"next": "14.2.14"
"react": "^18.2.0",
"react-dom": "^18.2.0",
"next": "catalog:"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18"
"typescript": "5.2.2",
"@types/node": "^13.13.5",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.0.6"
}
}
Loading

0 comments on commit 66cbdcb

Please sign in to comment.