diff --git a/components/Experience.vue b/components/Experience.vue
index 15d8692..bc5f5ec 100644
--- a/components/Experience.vue
+++ b/components/Experience.vue
@@ -7,7 +7,7 @@
-
{{ formatDate(begin) }} | {{location}}
+
{{ formatDate(begin) }} | {{location}}
{{ formatDate(begin) }} - {{ formatDate(end) }} | {{location}}
{{ $t(title) }}
{{ company }}
@@ -46,10 +46,6 @@ export default {
return date === 'Today' ? this.$t('date.today') : this.$t('month.' + dateFormat[0]) + " " + dateFormat[1]
},
isSameDate() {
- console.log(this.begin)
- console.log(this.end)
- console.log(this.end === this.begin)
- console.log(this.end == this.begin)
return this.begin === this.end
}
}