Skip to content

Commit

Permalink
FIX/remove number
Browse files Browse the repository at this point in the history
  • Loading branch information
AugustinSorel committed Jul 1, 2024
1 parent 22b0770 commit 76750cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,7 @@ export const UpdateNumberOfRepsForm = ({ exerciseData }: Props) => {
<FormItem>
<FormLabel>number of reps</FormLabel>
<FormControl>
<Input
placeholder="10"
type="number"
autoComplete="off"
{...field}
/>
<Input placeholder="10" autoComplete="off" {...field} />
</FormControl>
<FormMessage />
</FormItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,7 @@ export const UpdateWeightLifted = ({ exerciseData }: Props) => {
<FormItem>
<FormLabel>weight lifted</FormLabel>
<FormControl>
<Input
autoComplete="off"
placeholder="10"
type="number"
{...field}
/>
<Input autoComplete="off" placeholder="10" {...field} />
</FormControl>
<FormMessage />
</FormItem>
Expand Down

0 comments on commit 76750cd

Please sign in to comment.