We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9f086d commit 380940dCopy full SHA for 380940d
1 file changed
src/core/webview/ClineProvider.ts
@@ -1556,7 +1556,6 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
1556
const properties: Record<string, any> = {
1557
vscodeVersion,
1558
platform,
1559
- isCreatorView: this.isCreatorView,
1560
}
1561
1562
// Add extension version
@@ -1594,6 +1593,11 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
1594
1593
properties.diffStrategy = currentCline.diffStrategy.getName()
1595
1596
+ // Add creator mode context if available
1597
+ if (currentCline?.creatorModeConfig?.creatorMode) {
1598
+ properties.isCreatorMode = true
1599
+ }
1600
+
1601
return properties
1602
1603
0 commit comments