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 0f4dfd1 commit c7a05c2Copy full SHA for c7a05c2
apps/dashboard/src/components/settings/ApiKeys/Create/index.tsx
@@ -156,8 +156,8 @@ function CreateAPIKeyForm(props: {
156
const formattedValues = {
157
name: values.name,
158
domains: toArrFromList(values.domains),
159
- // enable all services
160
- services: SERVICES.map((srv) => ({
+ // enable all services (except insight)
+ services: SERVICES.filter((s) => s.name !== "insight").map((srv) => ({
161
name: srv.name,
162
targetAddresses: ["*"],
163
enabled: true,
0 commit comments