Skip to content

Commit 036554f

Browse files
committed
fix: hide suggestions when chat has messages
- Change suggestion availability from 'always' to 'on-empty' - Prompts now only show in empty chat - Hides clutter when conversation is ongoing
1 parent ef85a6d commit 036554f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/app/src/app/canvas/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ const DocumentEditor = () => {
222222
message: "Write a detailed document about continuous integration and continuous deployment, covering stages, automated testing, build artifacts, and deployment strategies.",
223223
},
224224
],
225-
available: "always",
225+
available: "on-empty",
226226
});
227227

228228
const { agent } = useAgent({

0 commit comments

Comments
 (0)