Skip to content

Commit 9282c9d

Browse files
danibonilhafacebook-github-bot
authored andcommitted
Remove TimerMixin from TouchableOpacity (#21520)
Summary: Related to #21485 This PR removes TimerMixin from TouchableOpacity Pull Request resolved: #21520 Differential Revision: D10223753 Pulled By: RSNara fbshipit-source-id: fc02077de7e73ee968b7944c0178892825099063
1 parent bb9b9a8 commit 9282c9d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Libraries/Components/Touchable/TouchableOpacity.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ const Easing = require('Easing');
1515
const NativeMethodsMixin = require('NativeMethodsMixin');
1616
const React = require('React');
1717
const PropTypes = require('prop-types');
18-
const TimerMixin = require('react-timer-mixin');
1918
const Touchable = require('Touchable');
2019
const TouchableWithoutFeedback = require('TouchableWithoutFeedback');
2120

@@ -132,7 +131,7 @@ type Props = $ReadOnly<{|
132131
*/
133132
const TouchableOpacity = ((createReactClass({
134133
displayName: 'TouchableOpacity',
135-
mixins: [TimerMixin, Touchable.Mixin, NativeMethodsMixin],
134+
mixins: [Touchable.Mixin, NativeMethodsMixin],
136135

137136
propTypes: {
138137
...TouchableWithoutFeedback.propTypes,

0 commit comments

Comments
 (0)