fix remove delete and edit in business
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
hamid zarghami
2026-06-13 15:26:44 +03:30
parent f57761b726
commit 01f890e9ea
2 changed files with 15 additions and 10 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ const Business: FC = () => {
<div className="w-full mt-5">
<GridWrapper desktop={4} gapDesktop={40} mobile={1}>
{data?.data?.map((item) => {
return <CatalogueItem slug={slug ?? ""} refetch={refetch} key={item.id} item={item} />;
return <CatalogueItem slug={slug ?? ""} refetch={refetch} key={item.id} item={item} readOnly />;
})}
</GridWrapper>
</div>