Fix stringToKey type error

This commit is contained in:
DevHossamHassan
2017-06-21 00:45:09 +02:00
parent f764e0f436
commit a53e226415
@@ -776,9 +776,9 @@ public class RNInstabugReactnativeModule extends ReactContextBaseJavaModule {
}
}
private String getStringToKeyConstant(String key) {
private InstabugCustomTextPlaceHolder.Key getStringToKeyConstant(String key) {
String keyInLowerCase = key.toLowerCase();
switch (localeInLowerCase) {
switch (keyInLowerCase) {
case SHAKE_HINT:
return InstabugCustomTextPlaceHolder.Key.SHAKE_HINT;
case SWIPE_HINT: