This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js b/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js | |
index 441442f..a536c7a 100644 | |
--- a/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js | |
+++ b/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js | |
@@ -735,7 +735,29 @@ var ExhaustiveDeps = { | |
}, | |
enableDangerousAutofixThisMayCauseInfiniteLoops: { | |
type: 'boolean' | |
- } | |
+ }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private class TransitionAnimator { | |
let groupName = "transition.group" | |
weak var layer: CALayer? | |
init(_ view: UIView) { | |
self.layer = view.layer | |
} | |
private var group: CAAnimationGroup? { | |
return layer?.animation(forKey: groupName) as? CAAnimationGroup |