Removed extra semicolon

Summary: Closes https://github.com/facebook/react-native/pull/13389

Differential Revision: D4854128

Pulled By: hramos

fbshipit-source-id: bd7d0d12eae51fed31cf4bc2260b8c4f447e08c8
This commit is contained in:
César Alberca 2017-04-07 18:35:14 -07:00 committed by Facebook Github Bot
parent 6f8ce41a39
commit a1e06dfb39
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class MainScreen extends React.Component {
<Button
title="Go to Jane's profile"
onPress={() =>
navigate('Profile', { name: 'Jane' });
navigate('Profile', { name: 'Jane' })
}
/>
);