Bug Fixes

This commit is contained in:
2025-11-22 17:53:41 +01:00
parent ad5b5e81bb
commit 66652afc90

View File

@@ -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!' },
];
];