We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cb80a7 commit 0aad2bcCopy full SHA for 0aad2bc
apps/array/src/renderer/features/task-detail/components/TaskInputEditor.tsx
@@ -247,13 +247,9 @@ export const TaskInputEditor = forwardRef<
247
loading={isCreatingTask}
248
style={{
249
backgroundColor:
250
- !canSubmit || isDisabled
251
- ? "var(--accent-a4)"
252
- : undefined,
+ !canSubmit || isDisabled ? "var(--accent-a4)" : undefined,
253
color:
254
255
- ? "var(--accent-8)"
256
+ !canSubmit || isDisabled ? "var(--accent-8)" : undefined,
257
}}
258
>
259
<ArrowUp size={16} weight="bold" />
0 commit comments