Skip to content

Commit 9530797

Browse files
committed
fix: fix navbar
1 parent ca8ae41 commit 9530797

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
## [1.3.12](https://github.com/justdlabs/inertia.ts/compare/v1.3.11...v1.3.12) (2025-01-18)
44

5-
65
### Bug Fixes
76

8-
* syncing the latest justd ([289c077](https://github.com/justdlabs/inertia.ts/commit/289c077a8a835c96550de57564b71bde33c6835c))
7+
- syncing the latest justd ([289c077](https://github.com/justdlabs/inertia.ts/commit/289c077a8a835c96550de57564b71bde33c6835c))
98

109
## [1.3.11](https://github.com/justdlabs/inertia.ts/compare/v1.3.10...v1.3.11) (2025-01-15)
1110

bun.lockb

2.69 KB
Binary file not shown.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
"devDependencies": {
1212
"@commitlint/cli": "^19.6.1",
1313
"@commitlint/config-conventional": "^19.6.0",
14-
"@inertiajs/react": "^2.0.0",
14+
"@inertiajs/react": "^2.0.2",
1515
"@release-it/bumper": "^6.0.1",
1616
"@release-it/conventional-changelog": "^9.0.4",
17-
"@types/react": "^19.0.6",
17+
"@types/react": "^19.0.7",
1818
"@types/react-dom": "^19.0.3",
1919
"@vitejs/plugin-react": "^4.3.4",
2020
"autoprefixer": "^10.4.20",
@@ -23,20 +23,20 @@
2323
"laravel-vite-plugin": "^1.1.1",
2424
"prettier": "^3.4.2",
2525
"prettier-plugin-organize-imports": "^4.1.0",
26-
"prettier-plugin-tailwindcss": "^0.6.9",
26+
"prettier-plugin-tailwindcss": "^0.6.10",
2727
"release-it": "^17.11.0",
2828
"tailwindcss": "^4.0.0-beta.9",
2929
"typescript": "^5.7.3",
3030
"vite-plugin-watch": "^0.3.1"
3131
},
3232
"dependencies": {
3333
"@tailwindcss/vite": "^4.0.0-beta.9",
34-
"@types/node": "^22.10.5",
34+
"@types/node": "^22.10.7",
3535
"clsx": "^2.1.1",
36-
"justd-icons": "^1.10.19",
36+
"justd-icons": "^1.10.20",
3737
"motion": "^11.18.1",
3838
"react": "^19.0.0",
39-
"react-aria-components": "^1.5.0",
39+
"react-aria-components": "^1.6.0",
4040
"react-dom": "^19.0.0",
4141
"sonner": "^1.7.2",
4242
"tailwind-merge": "^2.6.0",

resources/js/layouts/app-navbar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ function UserMenu() {
147147
]}
148148
>
149149
{(item) => (
150-
<Menu.Checkbox id={item.value} textValue={item.name}>
150+
<Menu.Item id={item.value} textValue={item.name}>
151151
{item.name}
152-
</Menu.Checkbox>
152+
</Menu.Item>
153153
)}
154154
</Menu.Content>
155155
</Menu.Submenu>

0 commit comments

Comments
 (0)