Skip to content

Commit 039504a

Browse files
authored
Fix SG logo in local and preview setup (#745)
Fix SG logo in local and preview setup
1 parent 065fbae commit 039504a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Logo.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ export function Logo(props: React.ComponentPropsWithoutRef<'svg'>) {
55
<>
66
<img
77
className="hidden h-[23px] w-[190px] dark:block"
8-
src={`${basePath}/logo-theme-dark.svg`}
8+
src={`/docs/logo-theme-dark.svg`}
99
alt="Sourcegraph Docs"
1010
/>
1111
<img
1212
className="block h-[23px] w-[190px] dark:hidden"
13-
src={`${basePath}/logo-theme-light.svg`}
13+
src={`/docs/logo-theme-light.svg`}
1414
alt="Sourcegraph Docs"
1515
/>
1616
</>

0 commit comments

Comments
 (0)