Skip to content

Commit 7c070f6

Browse files
Fixed typo at data.js (#101)
Change `getBlankAntOf` as `getBlankAnyOf`
1 parent ea3f7c3 commit 7c070f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ function getSyncedObject(data, schema, getRef) {
325325
else if (type === 'oneOf')
326326
newData[key] = getBlankOneOf(schemaValue, getRef);
327327
else if (type === 'anyOf')
328-
newData[key] = getBlankAntOf(schemaValue, getRef);
328+
newData[key] = getBlankAnyOf(schemaValue, getRef);
329329
else if (type === 'boolean')
330330
newData[key] = default_ === false ? false : (default_ || null);
331331
else if (type === 'integer' || type === 'number')

0 commit comments

Comments
 (0)