Fix prettier issue

This commit is contained in:
Jordan Eldredge 2019-11-18 09:11:45 -08:00
parent fb395c39c2
commit dffb0949a5

View file

@ -218,7 +218,7 @@ export function findDescendantByTypeAndId<
(!type || child.name === type) &&
child.attributes &&
child.attributes.id !== undefined &&
child.attributes.id.toLowerCase() === lowerCaseId
child.attributes.id.toLowerCase() === lowerCaseId
) {
return child;
}