Skip to content

Commit

Permalink
Fix schema
Browse files Browse the repository at this point in the history
  • Loading branch information
nezouse committed Mar 20, 2024
1 parent 802873f commit d0e73eb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ export function MainDetails() {
name: applicationData.name ?? "",
entityName: applicationData.entityName ?? "",
duration: applicationData.duration ?? "",
budget: applicationData.budget ?? "",
budget: String(applicationData.budget) ?? "",
summary: applicationData.summary ?? "",
} satisfies mainDetailsSchema,
} satisfies Record<keyof mainDetailsSchema, string> as any,
});

const imageUploadRef = useRef<HTMLInputElement>(null);
Expand Down

0 comments on commit d0e73eb

Please sign in to comment.