Skip to content

Commit

Permalink
Merge pull request #68 from cabcookie/add-rich-text-editor
Browse files Browse the repository at this point in the history
Cleanup before release
  • Loading branch information
cabcookie authored May 21, 2024
2 parents 223607c + d5810a1 commit 4771240
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 25 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always",
"source.organizeImports": "always",
"source.fixAll.markdownlint": true
"source.fixAll.markdownlint": "explicit"
},
"typescript.validate.enable": true,
"typescript.format.enable": true,
Expand Down
24 changes: 0 additions & 24 deletions pages/inbox/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -269,27 +269,3 @@ const InboxPage = () => {
};

export default InboxPage;

/**
* statusFilter === "new" ? (
) : statusFilter === "actionable" ? (
<Question
question="Doable in 2 minutes?"
action={respondTwoMinuteRule}
/>
) : statusFilter === "notActionable" ? (
<Question
question="Move to a project?"
action={respondMoveToProject}
/>
) : statusFilter === "doNow" ? (
<Question question="Done?" action={respondDone} />
) : statusFilter === "done" ? (
<MdDoneOutline className={listStyles.listItemIcon} />
) : statusFilter === "moveToProject" ? (
<FaArrowRight className={listStyles.listItemIcon} />
) : (
"Unknown Status"
)
*/

0 comments on commit 4771240

Please sign in to comment.