Skip to content

Commit

Permalink
fix(location): removed heading
Browse files Browse the repository at this point in the history
  • Loading branch information
aeswibon committed Dec 27, 2023
1 parent fae30d4 commit 37255bb
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/Components/Facility/AddLocationForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,11 @@ export const AddLocationForm = (props: LocationFormProps) => {
name: string;
description: string;
middlewareAddress: string;
duty_staff: string;
locationType: string;
}>({
name: "",
description: "",
middlewareAddress: "",
duty_staff: "",
locationType: "",
});
const headerText = !locationId ? "Add Location" : "Update Location";
Expand Down Expand Up @@ -171,12 +169,6 @@ export const AddLocationForm = (props: LocationFormProps) => {
<div className="cui-card">
<form onSubmit={handleSubmit}>
<div className="mt-2 grid grid-cols-1 gap-4">
<div className="flex flex-row items-center">
<label className="text-lg font-bold text-gray-900">
General Details
</label>
<hr className="ml-6 flex-1 border border-gray-400" />
</div>
<div>
<TextFormField
name="name"
Expand Down

0 comments on commit 37255bb

Please sign in to comment.