Skip to content

Commit

Permalink
fix: 이미지 불러오기 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
sseohalee committed Jun 11, 2024
1 parent 253de68 commit fa30eb1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/pages/home/GoalProductRecommend.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const GoalProductRecommend = ({ goalId }: { goalId: number }) => {
<div className="grid grid-cols-6 gap-1">
<div className="bg-gray-200 w-8 h-8 rounded-full grid place-items-center">
<img
src="\src\assets\img-hana-symbol-m.png"
src="/img-hana-symbol-m.png"
alt="하나은행"
className="w-9/12"
/>
Expand Down Expand Up @@ -144,7 +144,7 @@ const GoalProductRecommend = ({ goalId }: { goalId: number }) => {
<div className="grid grid-cols-6 gap-1">
<div className="bg-gray-200 w-8 h-8 rounded-full grid place-items-center">
<img
src="\src\assets\img-hana-symbol-m.png"
src="/img-hana-symbol-m.png"
alt="하나은행"
className="w-9/12"
/>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/life/LifePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export const LifePage = () => {
{dailyTransaction.length !== 0 ? (
<ConsumptionChart amountByType={amountByType} />
) : (
<img src="byul2.png" alt="transaction_is_none" className="m-auto w-2/3" />
<img src="/byul2.png" alt="transaction_is_none" className="m-auto w-2/3" />
)}
</div>
<div className="col-span-3 text-center ml-3">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/mypage/account/create/AccountAddPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const AccountAddPage = () => {
<div className="flex justify-center my-20">
<div className="bg-gray-200 w-8 h-8 rounded-full grid place-items-center mr-5">
<img
src="\src\assets\img-hana-symbol-m.png"
src="/img-hana-symbol-m.png"
alt="하나은행"
className="w-9/12"
/>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/split/SplitStartPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ export const SplitStartPage = () => {
<p className="text-sm font-hana-r mt-5">효율적인 돈 관리를 위해<br />하나피스가 대신 도와드릴게요!</p>
</div>
<div>
<img src="../byul3.png" alt="" />
<img src="/byul3.png" alt="" />
</div>
</div>
<div className="my-10">
<img src="../split-start.png" alt="" />
<img src="/split-start.png" alt="" />
</div>
<button onClick={()=>setModalOpen(true)}
className="green-button font-hana-m text-lg"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/split/SplitStartSplitPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export const SplitStartSplitPage = () => {
</h3>
<div>
<img
src="\src\assets\byul5.png"
src="/byul5.png"
className="w-20"
alt="하나은행"
/>
Expand Down

0 comments on commit fa30eb1

Please sign in to comment.