Skip to content

Commit

Permalink
remove period
Browse files Browse the repository at this point in the history
  • Loading branch information
JosiasAurel committed Apr 1, 2024
1 parent 9104340 commit 79565ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/navbar-editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export default function EditorNavbar(props: EditorNavbarProps) {
<li class={`${styles.logo} ${showNavPopup.value ? styles.active : ''}`}>
<button onClick={() => showNavPopup.value = !showNavPopup.value}>
{/* <SprigIcon /> */}
<img class={styles.dino} src={themes[theme.value]?.navbarIcon ?? "./SPRIGDINO.png"} height={38} />
<img class={styles.dino} src={themes[theme.value]?.navbarIcon ?? "/SPRIGDINO.png"} height={38} />
<div class={styles.caret}><IoChevronDown /></div>
</button>
</li>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ type Theme = {
};

const baseTheme: Theme = {
navbarIcon: "./SPRIGDINO.png",
navbarIcon: "/SPRIGDINO.png",
accent: "#078969",
accentDark: "#136853",
fgMutedOnAccent: "#8fcabb",
Expand Down

0 comments on commit 79565ee

Please sign in to comment.