This commit is contained in:
2025-07-28 13:18:26 +05:00
parent a931850aec
commit 4b1693bfbf
3 changed files with 9 additions and 9 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

+1 -1
View File
@@ -25,7 +25,7 @@ function UnitSlider({ unitTypeVariant, complexName }: UnitSliderProps) {
useEffect(
() =>
setSelectedSide(
hasSide || unitTypeVariant === "2-bedroom-b" ? undefined : "left"
hasSide || unitTypeVariant === "2-bedroom-b" ? "left" : "left"
),
[hasSide, unitTypeVariant]
);
+8 -8
View File
@@ -58,15 +58,15 @@ function UnitPage() {
setUnitTypeVariantMarasiDrive(unitTypeVariantMarasiDrive);
}
<<<<<<< HEAD
// <<<<<<< HEAD
// if (unit) {
// console.log("Unit number:", unit.unitNo);
// console.log("Is combinable:", isUnitCombinable(unit));
// console.log("Unit type:", unit.unitType);
// }
=======
>>>>>>> 964167e863ddf4416c0e747dc4d25c185dff4505
// // if (unit) {
// // console.log("Unit number:", unit.unitNo);
// // console.log("Is combinable:", isUnitCombinable(unit));
// // console.log("Unit type:", unit.unitType);
// // }
// =======
// >>>>>>> 964167e863ddf4416c0e747dc4d25c185dff4505
}, [unit]);
const { favoriteUnits, setFavoriteUnits } = useFavoritesUnitsStore();