Skip to content

Commit

Permalink
Fix input placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorrisondev committed Jul 11, 2024
1 parent 0b47526 commit af37fbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/podcast/apply/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function Page() {
<FormItem>
<FormLabel>Your name</FormLabel>
<FormControl>
<Input placeholder="Your name" {...field} />
<Input placeholder="Your full name" {...field} />
</FormControl>
<FormMessage />
</FormItem>
Expand Down Expand Up @@ -138,7 +138,7 @@ function Page() {
/>
<FormField control={form.control} name="productUrl" render={({ field }) => (
<FormItem>
<FormLabel>Product name</FormLabel>
<FormLabel>Product URL</FormLabel>
<FormControl>
<Input placeholder="Product URL" {...field} />
</FormControl>
Expand Down

0 comments on commit af37fbf

Please sign in to comment.