Skip to content

Commit

Permalink
fix(siderbar.tsx): fix wrong url
Browse files Browse the repository at this point in the history
  • Loading branch information
chenxc committed Jul 15, 2024
1 parent d8e1837 commit 4512e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export function SideBar(props: { className?: string }) {
</div>
<div className={styles["sidebar-sub-title"]}>{siteDescription}</div>
<div className={styles["sidebar-logo"] + " no-dark"}>
{!!siteLogURL ? <img src={siteLogURL}></img> : <ChatGptIcon />}
{siteLogURL ? <img src={siteLogURL}></img> : <ChatGptIcon />}
</div>
</div>

Expand Down

0 comments on commit 4512e7a

Please sign in to comment.