Skip to content

Commit 1944514

Browse files
committed
[playground] Fix sample type
1 parent 4f8c576 commit 1944514

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

apps/playground/src/samples/one-of-defaults.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ const uiSchema: UiSchemaRoot = {
204204
},
205205
};
206206

207-
export default {
208-
status: "broken",
207+
const sample: Sample = {
208+
status: "perfect",
209209
schema,
210210
uiSchema,
211211
formData: {
@@ -215,4 +215,6 @@ export default {
215215
paginate: false,
216216
createOnOpen: true,
217217
},
218-
} satisfies Sample;
218+
}
219+
220+
export default sample;

0 commit comments

Comments
 (0)