mirror of
https://github.com/ecency/ecency-mobile.git
synced 2025-01-07 06:32:02 +03:00
commit
2adb8306dc
@ -24,7 +24,9 @@
|
||||
"bump-patch": "npm version patch --no-git-tag-version",
|
||||
"bump-minor": "npm version minor --no-git-tag-version",
|
||||
"bump-major": "npm version major --no-git-tag-version",
|
||||
"postinstall": "npx patch-package && node_modules/.bin/rn-nodeify --install --hack --yarn && cd ios && pod install"
|
||||
"postinstall": "npx patch-package && node_modules/.bin/rn-nodeify --install --hack --yarn && cd ios && pod install",
|
||||
"ubuntu:pixel_6": "cd $ANDROID_HOME/tools && __NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia emulator -avd pixel_6 -gpu host",
|
||||
"ubuntu:flipper": "__NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia flipper"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/preset-typescript": "^7.16.7",
|
||||
|
@ -69,7 +69,7 @@ const PostCardView = ({
|
||||
};
|
||||
|
||||
const _handleOnReblogsPress = () => {
|
||||
if (reblogs.length > 0) {
|
||||
if (reblogs && reblogs.length > 0) {
|
||||
handleOnReblogsPress();
|
||||
}
|
||||
};
|
||||
|
@ -1,8 +1,5 @@
|
||||
import Bugsnag from '@bugsnag/react-native';
|
||||
import Config from 'react-native-config';
|
||||
|
||||
const bugsnapInstance = Bugsnag.start({
|
||||
apiKey: Config.BUGSNAG_API_KEY,
|
||||
});
|
||||
const bugsnapInstance = Bugsnag.start();
|
||||
|
||||
export default bugsnapInstance;
|
||||
|
@ -72,7 +72,7 @@ class HiveSigner extends PureComponent {
|
||||
Alert.alert(
|
||||
'Error',
|
||||
// intl.formatMessage({ id:
|
||||
error,
|
||||
error.message || error.toString(),
|
||||
// }),
|
||||
);
|
||||
// TODO: return
|
||||
|
Loading…
Reference in New Issue
Block a user