diff --git a/src/App.vue b/src/App.vue index 551b7dc..3bbd408 100644 --- a/src/App.vue +++ b/src/App.vue @@ -36,7 +36,6 @@ const viewMode = ref('focus') const printLayout = ref('single') const demoMode = ref(false) const demoDayOffset = ref(0) -const demoViewMode = ref('single') const authDialogOpen = ref(false) const authMode = ref('login') const authBusy = ref(false) @@ -491,9 +490,6 @@ const secondaryDateDisplay = computed(() => getDateDisplay(secondaryDate.value)) const demoDate = computed(() => createDemoDate(demoDayOffset.value)) const demoDateDisplay = computed(() => getDateDisplay(demoDate.value)) const demoPlanner = computed(() => createDemoRecord(demoDayOffset.value)) -const demoNextDate = computed(() => createDemoDate(Math.min(demoDayOffset.value + 1, 1))) -const demoNextDateDisplay = computed(() => getDateDisplay(demoNextDate.value)) -const demoNextPlanner = computed(() => createDemoRecord(Math.min(demoDayOffset.value + 1, 1))) const demoDday = computed(() => { const offset = demoDayOffset.value @@ -507,15 +503,6 @@ const demoDday = computed(() => { return 'D-7 나만의 루틴 만들기' }) -const demoNextDday = computed(() => { - const offset = Math.min(demoDayOffset.value + 1, 1) - - if (offset > 0) { - return 'D-6 나만의 루틴 만들기' - } - - return 'D-7 나만의 루틴 만들기' -}) const monthLabel = computed(() => `${calendarViewDate.value.getMonth() + 1}`.padStart(2, '0'), @@ -2132,8 +2119,7 @@ onBeforeUnmount(() => {
MEMBERS ONLY
할 일, 집중 시간, 짧은 코멘트를 한 장의 다이어리로 남기고 내일의 첫 작업까지 이어가세요.
@@ -2159,7 +2145,7 @@ onBeforeUnmount(() => {
@@ -2183,10 +2169,10 @@ onBeforeUnmount(() => {