Fix prettier on all files

This commit is contained in:
2019-08-03 20:40:07 +05:30
parent feee690b48
commit 67206dfe41
24 changed files with 164 additions and 144 deletions
+8 -2
View File
@@ -48,7 +48,10 @@ function findNodeByComponent(
}
}
{
const returnVal = findNodeByComponent(node.sibling, expectedClassOrFunction);
const returnVal = findNodeByComponent(
node.sibling,
expectedClassOrFunction
);
if (returnVal !== null) {
return returnVal;
}
@@ -76,7 +79,10 @@ function findNodeByComponentRef(
}
}
{
const returnVal = findNodeByComponentRef(node.sibling, expectedClassInstance);
const returnVal = findNodeByComponentRef(
node.sibling,
expectedClassInstance
);
if (returnVal !== null) {
return returnVal;
}