fix bug slug
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
hamid zarghami
2026-06-07 15:58:08 +03:30
parent 9b00a22d11
commit 5002596bb9
2 changed files with 8 additions and 24 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 refetch={refetch} key={item.id} item={item} />;
return <CatalogueItem slug={slug ?? ""} refetch={refetch} key={item.id} item={item} />;
})}
</GridWrapper>
</div>