fix(app): enable submit button when comment cards are present

This commit is contained in:
David Hill
2026-01-24 19:06:03 +00:00
parent faf2609bc5
commit 02456376ce

View File

@@ -2013,7 +2013,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
>
<IconButton
type="submit"
disabled={!prompt.dirty() && !working()}
disabled={!prompt.dirty() && !working() && commentCount() === 0}
icon={working() ? "stop" : "arrow-up"}
variant="primary"
class="h-6 w-4.5"