Skip to content

Commit adcef3f

Browse files
committed
lint
1 parent 48e1659 commit adcef3f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

apps/array/src/renderer/features/message-editor/tiptap/useTiptapEditor.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,10 @@ export function useTiptapEditor(options: UseTiptapEditorOptions) {
104104
return true;
105105
}
106106

107-
if (taskId && (event.key === "ArrowUp" || event.key === "ArrowDown")) {
107+
if (
108+
taskId &&
109+
(event.key === "ArrowUp" || event.key === "ArrowDown")
110+
) {
108111
const currentText = view.state.doc.textContent;
109112
const isEmpty = !currentText.trim();
110113
const { from } = view.state.selection;

0 commit comments

Comments
 (0)