feature/IO-3499-React-19-ProductionBoard - remove use-memo-one / Add missing cards

This commit is contained in:
Dave
2026-01-15 14:31:15 -05:00
parent 1165fc1489
commit e4aa920b1a
8 changed files with 22 additions and 22 deletions

View File

@@ -1,4 +1,4 @@
import { Form, Input, Select } from "antd";
import { Card, Form, Input, Select } from "antd";
import { useContext } from "react";
import { useTranslation } from "react-i18next";
import JobCreateContext from "../../pages/jobs-create/jobs-create.context";
@@ -29,7 +29,7 @@ export default function JobsCreateOwnerInfoNewComponent() {
];
return (
<div>
<Card>
<LayoutFormRow header={t("owners.forms.name")} grow>
<Form.Item
label={t("owners.fields.ownr_ln")}
@@ -178,6 +178,6 @@ export default function JobsCreateOwnerInfoNewComponent() {
<Select disabled={!state.owner.new} allowClear placeholder="Type" options={PREFERRED_CONTACT_OPTIONS} />
</Form.Item>
</LayoutFormRow>
</div>
</Card>
);
}