Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sallar committed May 30, 2015
1 parent e67d814 commit 0f762f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion views/Venues.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ var React = require('react-native'),
Loading = require('./../components/Loading'),
Helpers = require('../utils/Helpers'),
RCTRefreshControl = require('RCTRefreshControl'),
baseDataSource = new ListView.DataSource({rowHasChanged: (r1, r2) => r1.id !== r2.id}),
{Stylesheet, VenuesStyles, ListStyles, IndicatorStyles} = require('../utils/Styles'),
LISTVIEW = 'ListView';

Expand All @@ -26,6 +25,8 @@ var {
TouchableHighlight,
} = React;

var baseDataSource = new ListView.DataSource({rowHasChanged: (r1, r2) => r1.id !== r2.id});

/**
* Venues View
*/
Expand Down

0 comments on commit 0f762f7

Please sign in to comment.