@@ -90,6 +90,7 @@ const periodTypeMap = ref({
});
+// eslint-disable-next-line no-unused-vars
const formatDistance = (distance) => {
if (distance === null || distance === undefined || distance === '') return '—';
@@ -173,6 +173,7 @@ const priceByPeriod = (p) => {
return p[key] ? formatCurrency(p[key]) : t('search_page.no_price');
};