Skip to content

Commit

Permalink
Add asterisks for all required fields on forms
Browse files Browse the repository at this point in the history
  • Loading branch information
peterMuriuki committed Oct 25, 2024
1 parent dcc3093 commit 05904c0
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ const AddLocationInventoryForm = (props: LocationInventoryFormProps) => {
return (
<Form
form={form}
requiredMark={false}
{...formItemLayout}
onFinish={(values: GroupFormFields) => {
mutate(values);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ function CommodityForm<

return (
<Form
requiredMark={false}
{...formItemLayout}
onFinish={(values: FormFields) => {
mutate(values);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ const HealthCareForm = (props: HealthCareFormProps) => {

return (
<Form
requiredMark={false}
{...formItemLayout}
onFinish={(values: HealthCareFormFields) => {
mutate(values);
Expand Down

0 comments on commit 05904c0

Please sign in to comment.