Adjust spaces in index.js

This commit is contained in:
DevHossamHassan 2017-05-11 19:03:15 +02:00
parent f78b91c9f3
commit f1d3267aab

View File

@ -1,4 +1,4 @@
import {NativeModules, NativeAppEventEmitter, Platform} from 'react-native';
import {NativeModules, NativeAppEventEmitter, Platform} from "react-native";
let {Instabug} = NativeModules;
/**
@ -500,7 +500,7 @@ module.exports = {
setReportCategories: function (titles) {
if (Platform.OS == 'ios') {
Instabug.setReportCategories(titles, null);
}else if(Platform.OS == 'android') {
} else if (Platform.OS == 'android') {
Instabug.setReportCategories(titles);
}
},