Skip to content

Commit

Permalink
Fix(example) : Image missing width property in with-redux example (ve…
Browse files Browse the repository at this point in the history
…rcel#63546)

- Fixes vercel#63542

Co-authored-by: yelipei <[email protected]>
Co-authored-by: Steven <[email protected]>
  • Loading branch information
3 people authored Mar 21, 2024
1 parent 04f5781 commit 77b2100
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion examples/with-redux/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@ export default function RootLayout({ children }: Props) {
<Nav />

<header className={styles.header}>
<Image src="/logo.svg" className={styles.logo} alt="logo" />
<Image
src="/logo.svg"
className={styles.logo}
alt="logo"
width={100}
height={100}
/>
</header>

<main className={styles.main}>{children}</main>
Expand Down

0 comments on commit 77b2100

Please sign in to comment.