Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions apps/bridge/src/shared/schemas/wafir-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,27 +197,6 @@ export const wafirConfigSchema = {
additionalProperties: false,
},
},
telemetry: {
type: "object",
description: "Automatic data collection settings",
properties: {
screenshot: {
type: "boolean",
default: true,
description: "Enable screenshot capture",
},
browserInfo: {
type: "boolean",
default: true,
description: "Collect URL, user agent, viewport, language",
},
consoleLog: {
type: "boolean",
default: false,
description: "Capture console messages",
},
},
},
forms: {
type: "array",
items: formSchema,
Expand Down
5 changes: 0 additions & 5 deletions apps/bridge/src/shared/utils/config-validator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ const DEFAULT_CONFIG: WafirConfig = {
authRef: "",
},
],
telemetry: {
screenshot: true,
browserInfo: true,
consoleLog: false,
},
forms: [
{
id: "feedback",
Expand Down
7 changes: 0 additions & 7 deletions examples/full-featured/wafir.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,6 @@ targets:
target: your-username/your-repo
authRef: "YOUR_INSTALLATION_ID" # Replace with your installation ID

# Note: The telemetry section is deprecated. Use autofill fields instead for user opt-in.
# Legacy telemetry config is still supported for backward compatibility.
# telemetry:
# screenshot: true
# browserInfo: true
# consoleLog: true

forms:
- id: feedback
label: "Product Feedback"
Expand Down
Loading