url issue fixed

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-01-12 12:26:58 +05:00
parent 24f2b78adf
commit e2e9cbccbe

View File

@@ -59,13 +59,13 @@ export default function CartType() {
})}
{/* Avtoliftlar */}
{carType === "avtolift" &&
{carType === "Avtolift" &&
avtolift.map((item) => {
return <InnerProductcard data={item} key={item.id} />;
})}
{/* Avtovishka */}
{carType === "avtovishka" &&
{carType === "Avtovishka" &&
avtovishka.map((item) => {
return <InnerProductcard data={item} key={item.id} />;
})}