From 62827423a42158e3a26776e87b5b39beae4dbd56 Mon Sep 17 00:00:00 2001 From: "Valentin D. Pinkman" Date: Mon, 25 Jun 2018 10:45:39 +0200 Subject: [PATCH] fixed trad lang in uninstall app --- src/components/ManagerPage/AppsList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ManagerPage/AppsList.js b/src/components/ManagerPage/AppsList.js index 0ba3dea5..47de6804 100644 --- a/src/components/ManagerPage/AppsList.js +++ b/src/components/ManagerPage/AppsList.js @@ -116,7 +116,7 @@ class AppsList extends PureComponent { } = 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' }) }