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 d0399ce commit 9d39027Copy full SHA for 9d39027
packages/meta-updater/src/updateScopeMdx.ts
@@ -43,6 +43,7 @@ export function getScopeTypeTypes() {
43
44
const result: { scopeTypeType: ScopeTypeType; name: string }[] = [];
45
const used = new Set<ScopeTypeType>();
46
+
47
for (const scopeType of scopeTypes) {
48
const scopeTypeType = serializeScopeType(scopeType);
49
if (used.has(scopeTypeType)) {
@@ -51,5 +52,6 @@ export function getScopeTypeTypes() {
51
52
used.add(scopeTypeType);
53
result.push({ scopeTypeType, name: prettifyScopeType(scopeType) });
54
}
55
56
return result;
57
0 commit comments