Browse Source

Merge pull request #691 from valpinkman/fix/trad-uninstall-app

fixed trad lang in uninstall app
master
Meriadec Pillet 7 years ago
committed by GitHub
parent
commit
8177aebb9f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/components/ManagerPage/AppsList.js

2
src/components/ManagerPage/AppsList.js

@ -116,7 +116,7 @@ class AppsList extends PureComponent<Props, State> {
} = this.props
const data = { app, devicePath, targetId }
await uninstallApp.send(data).toPromise()
this.setState({ status: 'success', app: '' })
this.setState({ status: 'success' })
} catch (err) {
this.setState({ status: 'error', error: err, app: '', mode: 'home' })
}

Loading…
Cancel
Save