Skip to content

Commit

Permalink
chore: fix asset path prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-jan committed Sep 28, 2023
1 parent c1a0965 commit 1c79b93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/app/_components/ProgressBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const ProgressBar: React.FC<Props> = ({ used, total }) => {
return (
<div className="flex gap-[10px] items-center p-[10px]">
<div className="text-xs leading-[18px] gap-0.5 flex items-center">
<Image src={"/icons/app_icon.svg"} width={18} height={18} alt="" />
<Image src={"icons/app_icon.svg"} width={18} height={18} alt="" />
Updating
</div>
<div className="w-[150px] relative bg-blue-200 h-1 rounded-md flex">
Expand Down
2 changes: 1 addition & 1 deletion web/app/_components/SidebarMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const SidebarMenu: React.FC = () => {
)}
>
<Image
src={`/icons/${item.icon}.svg`}
src={`icons/${item.icon}.svg`}
width={24}
height={24}
alt=""
Expand Down

0 comments on commit 1c79b93

Please sign in to comment.