Skip to content

Commit eae190e

Browse files
authored
Remove redundant satisfies JSONSchema (#1118)
These schema had a double satisfies JSONSchema
1 parent 7e71ce3 commit eae190e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

charm/src/manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ export const charmSchema = {
4747
[UI]: { type: "object" },
4848
},
4949
required: [UI, NAME],
50-
} as const satisfies JSONSchema satisfies JSONSchema;
50+
} as const satisfies JSONSchema;
5151

5252
export const charmListSchema = {
5353
type: "array",
5454
items: { ...charmSchema, asCell: true },
55-
} as const satisfies JSONSchema satisfies JSONSchema;
55+
} as const satisfies JSONSchema;
5656

5757
export const charmLineageSchema = {
5858
type: "object",

0 commit comments

Comments
 (0)