Skip to content

Commit

Permalink
second try on debugging and favorites
Browse files Browse the repository at this point in the history
  • Loading branch information
Aredros committed Aug 11, 2023
1 parent 81a3b3e commit fe6a35f
Show file tree
Hide file tree
Showing 14 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/assets/components/TodoItem/IconAndColorItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ interface TodoItemProps {
startTime: string;
subTask: ITSubtaskTodo[];
failed: boolean;
favorite: boolean;
};
}
interface ITSubtaskTodo {
Expand Down
1 change: 1 addition & 0 deletions src/assets/components/TodoItem/Subtask/SubtaskItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ interface TodoItemProps {
startTime: string;
subTask: ITSubtaskTodo[];
failed: boolean;
favorite: boolean;
};
}
interface ITSubtaskTodo {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ interface TodoItemProps {
archived: boolean;
subTask: ITSubtaskTodo[];
failed: boolean;
favorite: boolean;
};
}
interface ITSubtaskTodo {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ interface TodoItemProps {
archived: boolean;
subTask: ITSubtaskTodo[];
failed: boolean;
favorite: boolean;
};
}

Expand Down
1 change: 1 addition & 0 deletions src/assets/components/TodoItem/buttons/FailButtonItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ interface TodoItemProps {
startTime: string;
subTask: ITSubtaskTodo[];
failed: boolean;
favorite: boolean;
};
}
interface ITSubtaskTodo {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import {
where,
getDocs,
} from "firebase/firestore";
import { v4 as uuidv4 } from "uuid";

interface TodoItemProps {
todo: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ interface TodoItemProps {
startTime: string;
subTask: ITSubtaskTodo[];
failed: boolean;
favorite: boolean;
};
}
interface ITSubtaskTodo {
Expand Down
1 change: 1 addition & 0 deletions src/assets/components/TodoItem/buttons/StartEditButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ interface TodoItemProps {
startTime: string;
subTask: ITSubtaskTodo[];
failed: boolean;
favorite: boolean;
};
}
interface ITSubtaskTodo {
Expand Down
1 change: 1 addition & 0 deletions src/assets/components/WeekHead/ArchiveWeekButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ interface IDoneTodo {
archived: boolean;
subTask: ITSubtaskTodo[];
failed: boolean;
favorite: boolean;
}
interface ITSubtaskTodo {
subTaskCompleted: boolean;
Expand Down
1 change: 1 addition & 0 deletions src/assets/components/WeekHead/WeekHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ interface ISuccessProps {
archived: boolean;
subTask: ITSubtaskTodo[];
failed: boolean;
favorite: boolean;
}[];
}
interface ITSubtaskTodo {
Expand Down
1 change: 1 addition & 0 deletions src/assets/components/WeekHead/WeekTypeCounter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ interface ITodo {
archived: boolean;
subTask: ITSubtaskTodo[];
failed: boolean;
favorite: boolean;
}

interface ITSubtaskTodo {
Expand Down
1 change: 1 addition & 0 deletions src/assets/components/WeeklyDivider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ interface ITodo {
archived: boolean;
subTask: ITSubtaskTodo[];
failed: boolean;
favorite: boolean;
}

interface ITSubtaskTodo {
Expand Down
1 change: 1 addition & 0 deletions src/assets/pages/Archive.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ interface ITodo {
archived: boolean;
subTask: ITSubtaskTodo[];
failed: boolean;
favorite: boolean;
}

interface ITSubtaskTodo {
Expand Down
1 change: 1 addition & 0 deletions src/assets/pages/TodoWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ interface ITodo {
archived: boolean;
subTask: ITSubtaskTodo[];
failed: boolean;
favorite: boolean;
}

interface ITSubtaskTodo {
Expand Down

0 comments on commit fe6a35f

Please sign in to comment.