Skip to content

Commit 89ff3da

Browse files
committed
chore: fix build
1 parent ee0ecc5 commit 89ff3da

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/compass-assistant/test/entrypoints/explain-plan.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3946,6 +3946,7 @@ function buildPrompt(explainCase: ExplainCase): SimpleEvalCase {
39463946
//aggregation: explainCase.aggregation?.trim(),
39473947
//schema: explainCase.schema?.trim(),
39483948
explainPlan: explainCase.explainPlan?.trim(),
3949+
operationType: 'aggregation',
39493950
}).prompt,
39503951
expected: explainCase.expected,
39513952
expectedSources: explainCase.expectedsources,

packages/compass-explain-plan/src/components/explain-plan-modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export const ExplainPlanModal: React.FunctionComponent<
153153
interpretExplainPlan({
154154
namespace: explainPlan.namespace,
155155
explainPlan: JSON.stringify(explainPlan),
156-
source: operationType ?? 'aggregation',
156+
operationType: operationType ?? 'aggregation',
157157
});
158158
}}
159159
disabled={status !== 'ready'}

0 commit comments

Comments
 (0)