Skip to content

Commit

Permalink
fix(lint): fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sgarnica1 committed Jun 6, 2024
1 parent b4d8fa1 commit 42f0c81
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/modules/Clients/ClientFormModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ type ClientFormModalProps = {
data?: CompanyEntity;
id?: string;
updateFunction:
| Dispatch<SetStateAction<CompanyEntity[]>>
| Dispatch<SetStateAction<CompanyEntity | null>>;
| Dispatch<SetStateAction<CompanyEntity[]>>
| Dispatch<SetStateAction<CompanyEntity | null>>;
};

function phoneNumberMask(value: string) {
Expand Down Expand Up @@ -86,7 +86,7 @@ function ClientFormModal({ open, setOpen, data, id, updateFunction }: ClientForm
);
form.setState(defaultData);
setOpen(false);
} catch (err) { }
} catch (err) {}
}}
>
<GenericInput
Expand Down

0 comments on commit 42f0c81

Please sign in to comment.