Skip to content

Commit

Permalink
fix: Update Logo import path in Header component
Browse files Browse the repository at this point in the history
The commit updates the import path for the Logo component in the Header component. The previous import path was incorrect and has been corrected to "./assets/holysheets-logo.svg". This ensures that the correct logo is displayed in the header.

Refactoring the import path improves the maintainability and readability of the codebase.
  • Loading branch information
teles committed Jul 12, 2024
1 parent 8dd3d3c commit e084b50
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes
2 changes: 1 addition & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import Icons from "./Icons.astro";
import ThemeToggler from "./ThemeToggler.astro";
import { Image } from "astro:assets";
import Logo from "./assets/holysheets-logo.svg";
import Logo from "../assets/holysheets-logo.svg";
---

<header
Expand Down

0 comments on commit e084b50

Please sign in to comment.