diff --git a/src/components/project/cards/Images.vue b/src/components/project/cards/Images.vue index 346b4b2..b5d3c9a 100644 --- a/src/components/project/cards/Images.vue +++ b/src/components/project/cards/Images.vue @@ -51,8 +51,6 @@ const { images, step, uri } = defineProps({ uri: String, }); -console.log(images); - const { isDesignToLightStep } = useDesignToLightStore(); const commentsCount = computed(() => { diff --git a/src/components/project/virtual-sample/Interactive360.vue b/src/components/project/virtual-sample/Interactive360.vue index 356554e..70f41ea 100644 --- a/src/components/project/virtual-sample/Interactive360.vue +++ b/src/components/project/virtual-sample/Interactive360.vue @@ -60,7 +60,7 @@ const xMax = computed(() => ) ); -const frontXView = (xMax.value + 1) / 2; +const frontXView = Math.round((xMax.value + 1) / 2); const currentX = ref(frontXView); const currentY = ref(0); const currentFileIndex = computed(() => currentY.value + '_' + currentX.value);