We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6766522 commit 16f776aCopy full SHA for 16f776a
2 files changed
src/frontend_react/src/components/toast/InlineToaster.tsx
@@ -140,7 +140,7 @@ const InlineToaster: React.FC = () => {
140
{getIconForIntent(toast.intent)}
141
</span>
142
<Body1>{toast.content}</Body1>
143
- {toast.dismissible && (
+ {(toast.dismissible || toast.intent === "progress") && (
144
<button
145
onClick={() => _setToasts?.((prev) => prev.filter((t) => t.id !== toast.id))}
146
style={{
src/frontend_react/src/pages/PlanPage.tsx
@@ -74,6 +74,7 @@ const PlanPage: React.FC = () => {
74
// Accept chat input and submit clarification
75
const handleOnchatSubmit = useCallback(
76
async (chatInput: string) => {
77
+ setInput("");
78
console.log('handleOnchatSubmit called with input:', chatInput);
79
if (!chatInput.trim()) {
80
showToast("Please enter a clarification", "error");
0 commit comments