Skip to content

Commit

Permalink
Fix internal types on top of TextInput refactor
Browse files Browse the repository at this point in the history
Summary:
Types were moved out of TextInput into TextInputTypes for better re-use. Fixing the internal callsites.

This isn't much of a worry externally because these types aren't exposed as part of the public API

Reviewed By: RSNara

Differential Revision: D10517066

fbshipit-source-id: bade4285eafb3d7ab5ab1e4b0730c22d45925509
  • Loading branch information
elicwhite authored and facebook-github-bot committed Nov 8, 2018
1 parent 70e9e26 commit ad7d8f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/Components/TextInput/TextInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class TextInput extends React.Component<Props> {
};

_inputRef: ?React.ElementRef<Class<TextInputType>> = null;
_lastNativeText: ?string = null;
_lastNativeText: ?Stringish = null;
_lastNativeSelection: ?Selection = null;
_rafId: ?AnimationFrameID = null;

Expand Down

0 comments on commit ad7d8f8

Please sign in to comment.