Skip to content

Commit

Permalink
fix: JSX double quote
Browse files Browse the repository at this point in the history
  • Loading branch information
YouheiNozaki committed Apr 14, 2024
1 parent ba52dbb commit 8e3fa99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/members/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type Props = {
export default function RootLayout({ children }: Props) {
return (
<>
<Hero title='Members' sub='メンバー' />
<Hero title="Members" sub="メンバー" />
<Sheet>{children}</Sheet>
</>
);
Expand Down
2 changes: 1 addition & 1 deletion app/members/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default function Page() {
<li key={member.id} className={styles.list}>
<Image
src={member.image.url}
alt=''
alt=""
width={member.image.width}
height={member.image.height}
className={styles.image}
Expand Down

0 comments on commit 8e3fa99

Please sign in to comment.