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 3b8ece2 commit 3ff30e8Copy full SHA for 3ff30e8
.changeset/rude-kings-teach.md
@@ -1,5 +1,5 @@
1
---
2
-"wrangler": minor
+"wrangler": patch
3
4
5
Migrate Workers Containers commands to Containers API Endpoints
packages/wrangler/src/cloudchamber/common.ts
@@ -196,7 +196,7 @@ export async function fillOpenAPIConfiguration(
196
}
197
198
const scopes = getScopes();
199
- const needsToken = !scopes?.find((s) => s === scope);
+ const needsToken = !scopes?.some((s) => s === scope);
200
const neededScopes: Scope[] = [scope];
201
const scopesToSet: Scope[] =
202
scopes == undefined
0 commit comments