Skip to content

Commit

Permalink
fix(web): remove unnecessary placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
IKatsuba committed May 6, 2024
1 parent e7b1513 commit 510f775
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function Settings() {
</CardHeader>
<CardContent>
<form>
<Input placeholder="Store Name" />
<Input />
</form>
</CardContent>
<CardFooter className="border-t px-6 py-4">
Expand Down
2 changes: 1 addition & 1 deletion apps/web/app/app/(user)/settings/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default async function Settings() {
</CardHeader>
<CardContent>
<form id="nameForm">
<Input placeholder="Store Name" name="name" defaultValue={user.user_metadata.name} />
<Input name="name" defaultValue={user.user_metadata.name} />
</form>
</CardContent>
<CardFooter className="border-t px-6 py-4">
Expand Down

0 comments on commit 510f775

Please sign in to comment.