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,6 +1,6 @@
import { PageHeader } from "@ant-design/pro-layout";
import { useApolloClient, useMutation } from "@apollo/client/react";
import { Button, Form, Popconfirm } from "antd";
import { Button, Card, Form, Popconfirm } from "antd";
import { phone } from "phone"; // Import phone utility for formatting
import { useEffect, useState } from "react";
import { useTranslation } from "react-i18next";
@@ -116,7 +116,7 @@ function OwnerDetailFormContainer({ owner, refetch, bodyshop }) {
};
return (
<>
<Card>
<PageHeader
title={t("menus.header.owners")}
extra={[
@@ -152,7 +152,7 @@ function OwnerDetailFormContainer({ owner, refetch, bodyshop }) {
}
/>
</Form>
</>
</Card>
);
}