From 66652afc900ae0f2aa67da440031014daeedbcc3 Mon Sep 17 00:00:00 2001 From: Sayuop Date: Sat, 22 Nov 2025 17:53:41 +0100 Subject: [PATCH] Bug Fixes --- src/types.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/types.ts b/src/types.ts index 36b7804..06a6903 100644 --- a/src/types.ts +++ b/src/types.ts @@ -34,8 +34,6 @@ export interface FocusTaskSettings { tickSoundEnabled: boolean; // Daily note logging logToDaily: boolean; - dailyNoteFormat: string; - dailyNoteHeading: string; } export interface FocusTaskData { @@ -64,8 +62,6 @@ export const DEFAULT_SETTINGS: FocusTaskSettings = { tickSoundEnabled: false, // Daily note logging logToDaily: false, - dailyNoteFormat: 'YYYY-MM-DD', - dailyNoteHeading: '## ⚡ Completed Tasks', }; export const DEFAULT_DATA: FocusTaskData = { @@ -104,4 +100,4 @@ export const OVERTIME_MESSAGES = [ { emoji: '💪', message: 'Persistence pays off!' }, { emoji: '🏃', message: 'Marathon runner!' }, { emoji: '🔥', message: 'The grind is real!' }, -]; \ No newline at end of file +];