Skip to content

Commit

Permalink
fix logo
Browse files Browse the repository at this point in the history
  • Loading branch information
KhudaDad414 committed Apr 26, 2024
1 parent dc62137 commit 936ca50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/studio-next/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function RootLayout({
<div>
<img
className="inline-block h-20"
src="%PUBLIC_URL%/img/logo-studio.svg"
src={`${process.env.PUBLIC_URL || ''}/img/logo-studio.svg`}
alt="AsyncAPI Logo"
/>
<span className="inline-block text-xs text-teal-500 font-normal tracking-wider ml-1 transform translate-y-1.5 -translate-x-1 uppercase">
Expand Down
2 changes: 1 addition & 1 deletion apps/studio-next/src/components/Toolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function Toolbar() {
<div className="flex-shrink-0 ml-1.5">
<img
className="inline-block h-16"
src={`${process.env.PUBLIC_URL}/img/logo-studio.svg`}
src={`${process.env.PUBLIC_URL || ''}/img/logo-studio.svg`}
alt="AsyncAPI Logo"
/>
<span className="inline-block text-xs text-teal-500 font-normal ml-1 tracking-wider uppercase" style={{ transform: 'translateY(0.3125rem)' }}>
Expand Down

0 comments on commit 936ca50

Please sign in to comment.