Skip to content

Commit

Permalink
chore: Replace let with const
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrieldonadel committed Sep 30, 2022
1 parent 8c7d206 commit c8a4515
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 @@ -1602,7 +1602,7 @@ const ExportedForwardRef: React.AbstractComponent<
React.ElementRef<HostComponent<mixed>> & ImperativeMethods,
>,
) {
let style = flattenStyle(restProps.style);
const style = flattenStyle(restProps.style);

if (style?.verticalAlign != null) {
style.textAlignVertical =
Expand Down

0 comments on commit c8a4515

Please sign in to comment.