Skip to content

Commit 8725bf3

Browse files
committed
fix some bug
1 parent e79579a commit 8725bf3

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
## [1.0.3](https://github.com/justdlabs/inertia.ts/compare/1.0.2...1.0.3) (2024-08-05)
42

53
## [1.0.2](https://github.com/justdlabs/inertia.ts/compare/1.0.1...1.0.2) (2024-08-04)

bun.lockb

439 Bytes
Binary file not shown.

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"private": true,
33
"type": "module",
44
"scripts": {
5-
"prepare": "husky install",
65
"dev": "vite",
76
"build": "tsc && vite build && vite build --ssr",
87
"format": "prettier --write .",
@@ -23,7 +22,7 @@
2322
"axios": "^1.7.3",
2423
"husky": "^9.1.4",
2524
"laravel-vite-plugin": "^1.0.5",
26-
"postcss": "^8.4.40",
25+
"postcss": "^8.4.41",
2726
"prettier": "^3.3.3",
2827
"prettier-plugin-organize-imports": "^4.0.0",
2928
"prettier-plugin-tailwindcss": "^0.6.5",

resources/js/components/navbar.tsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
import { PagePropsData } from '@/types'
22
import { usePage } from '@inertiajs/react'
3-
import { IconBrandJustd, IconBrandLaravel, IconChevronDown, IconHamburger, IconSettings } from '@irsyadadl/paranoid'
3+
import {
4+
IconBrandJustd,
5+
IconBrandLaravel,
6+
IconChevronDown,
7+
IconColorSwatch,
8+
IconHamburger,
9+
IconSettings
10+
} from '@irsyadadl/paranoid'
411
import { Container } from 'components/container'
512
import { Logo } from 'components/logo'
613
import { ThemeSwitcher } from 'components/theme-switcher'
@@ -175,7 +182,7 @@ function UserMenu() {
175182
</MenuItem>
176183
<MenuItem target="_blank" href="https://justd.co/colors" className="justify-between">
177184
Colors
178-
<IconBrandJustd />
185+
<IconColorSwatch />
179186
</MenuItem>
180187
<MenuSeparator />
181188
<MenuItem routerOptions={{ method: 'post' }} href={route('logout')}>

0 commit comments

Comments
 (0)