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 74d154c commit 74b3045Copy full SHA for 74b3045
frontend/src/components/editor/ai/ai-completion-editor.tsx
@@ -193,7 +193,7 @@ export const AiCompletionEditor: React.FC<Props> = ({
193
const showCompletionBanner =
194
enabled && triggerImmediately && (completion || isLoading);
195
// Set default output area to below if not specified
196
- outputArea = outputArea === undefined ? "below" : outputArea;
+ outputArea = outputArea ?? "below";
197
198
const showInput = enabled && (!triggerImmediately || showInputPrompt);
199
0 commit comments