+
diff --git a/src/components/homes/homedetails/ListingBasicInfo.vue b/src/components/homes/homedetails/ListingBasicInfo.vue
index dcfbb2b..922cb52 100644
--- a/src/components/homes/homedetails/ListingBasicInfo.vue
+++ b/src/components/homes/homedetails/ListingBasicInfo.vue
@@ -5,8 +5,13 @@
{{
listing.leaseType === '전세'
- ? '전세 ' + formatNumber(listing.depositPrice)
- : '월세 ' + formatNumber(listing.depositPrice) + ' / ' + formatNumber(listing.monthlyRent)
+ ? '전세 ' + formatNumber(listing.depositPrice) + '원'
+ : '월세 ' +
+ formatNumber(listing.depositPrice) +
+ '원' +
+ ' / ' +
+ formatNumber(listing.monthlyRent) +
+ '원'
}}
diff --git a/src/components/homes/homedetails/MapLocation.vue b/src/components/homes/homedetails/MapLocation.vue
index c124dac..6af0c9d 100644
--- a/src/components/homes/homedetails/MapLocation.vue
+++ b/src/components/homes/homedetails/MapLocation.vue
@@ -1,6 +1,6 @@
+
+
diff --git a/src/components/homes/homelist/ListingCard.vue b/src/components/homes/homelist/ListingCard.vue
index 7f30087..62f897d 100644
--- a/src/components/homes/homelist/ListingCard.vue
+++ b/src/components/homes/homelist/ListingCard.vue
@@ -22,15 +22,13 @@