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
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@ export const customSchema = {
"type": "object",
"required": [],
"maxProperties": 25,
"patternProperties": {
".": {
"maxLength": 100
}
},
"propertyNames": {
"pattern": "^(?!ga_|google_|firebase_)[A-Za-z][A-Za-z0-9_]*$",
"maxLength": 40
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@ export const buildEvents = () => {
"^(?!ga_|google_|firebase_)[A-Za-z][A-Za-z0-9_]*$",
"maxLength":
40
},
"patternProperties": {
".": {
"maxLength": 100
}
}
}
}
Expand Down
4 changes: 1 addition & 3 deletions src/components/ga4/EventBuilder/index.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,13 +176,11 @@ describe("Event Builder", () => {
// event categories so if it's broken, it's probably fine to just
// change the expected values.
const ecInput = within(eventCategory).getByRole("combobox")
//eventCategory.focus()
renderer.fireEvent.change(ecInput, {
target: { value: "All apps" },
})

const enInput = within(eventName).getByRole("combobox")
//eventCategory.focus()
renderer.fireEvent.change(enInput, {
target: { value: "campaign_details" },
})
Expand Down Expand Up @@ -227,4 +225,4 @@ describe("Event Builder", () => {
expect(adImpression).toBeNull()
})
})
})
})
Loading