Remove unnecessary break statement added by linter (#829)

This commit is contained in:
Sherfin Shamsudeen 2021-09-23 22:11:20 +05:30 committed by GitHub
parent 63b26d9a87
commit bea3c7a677
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,8 +99,8 @@ export function resolveReferences(object, state, defaultValue, customObjects = {
if (withError) return [object, error];
return object;
}
break;
}
// eslint-disable-next-line no-fallthrough
default: {
if (withError) return [object, error];
return object;