Skip to content

Commit

Permalink
fix: 로고 이미지 오류 에러 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
junhee1203 committed Nov 21, 2024
1 parent 11bbdd3 commit 6878264
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 0 additions & 3 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@
"@material-tailwind/react": "^2.1.10",
"@tanstack/react-query": "^5.59.19",
"axios": "^1.7.7",
<<<<<<< HEAD
"chart.js": "^4.4.6",
=======
>>>>>>> 508ddb7 (fix: deploy fix)
"lightweight-charts": "^4.2.1",
"lodash": "^4.17.21",
"lottie-react": "^2.4.0",
Expand Down
File renamed without changes
4 changes: 3 additions & 1 deletion packages/client/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { Button, Navbar } from '@material-tailwind/react';
import { Link } from 'react-router-dom';
import { useAuthStore } from '@/store/authStore';
import { useToast } from '@/hooks/useToast';
import logoImage from '@asset/corineeLogo.png'

function Header() {
const { login, logout } = useAuth();
const isAuthenticated = useAuthStore((state) => state.isAuthenticated);
Expand All @@ -17,7 +19,7 @@ function Header() {
>
<div>
<Link to={'/'} className="flex gap-2 items-center">
<img className="w-12 h-12" src="../asset/corineeLogo.png" />
<img className="w-12 h-12" src={logoImage} />
<h1 className="text-black text-xl font-semibold">Corinee</h1>
</Link>
</div>
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3726,7 +3726,7 @@ __metadata:
languageName: node
linkType: hard

"chokidar@npm:3.6.0, chokidar@npm:^3.5.3":
"chokidar@npm:3.6.0, chokidar@npm:^3.5.3, chokidar@npm:^3.6.0":
version: 3.6.0
resolution: "chokidar@npm:3.6.0"
dependencies:
Expand Down

0 comments on commit 6878264

Please sign in to comment.