chore(xo-web/xoa/update): dont hide error

This commit is contained in:
Julien Fontanet
2018-11-05 09:42:59 +01:00
parent 9d6cc77cc8
commit 244d8a51e8

View File

@@ -118,8 +118,11 @@ const Updates = decorate([
</p>
),
})
} catch (_) {
return
} catch (error) {
if (error === null) {
return
}
throw error
}
}