fix(ui): throw error on api error on flag update

This commit is contained in:
nick-delirium 2023-07-10 15:44:21 +02:00
parent 5b660b14d8
commit 4020f6b16e

View file

@ -139,6 +139,7 @@ export default class FeatureFlagsStore {
await this.client.updateStatus(flagId, isActive);
} catch (e) {
console.error(e);
throw e
}
}