Skip to content

Commit

Permalink
fix: optionals have no effect
Browse files Browse the repository at this point in the history
  • Loading branch information
micahg committed Dec 7, 2024
1 parent fbb407f commit afd3de3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import { Controller, useForm } from "react-hook-form";

interface FormValues {
name: string;
asset?: string;
hitPoints?: number;
asset: string;
hitPoints: number;
}

const CreateTokenFormComponent = () => {
Expand Down

0 comments on commit afd3de3

Please sign in to comment.