We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2852125 commit 8468812Copy full SHA for 8468812
public/pages/Dashboard/containers/DashboardClassic.js
@@ -302,7 +302,8 @@ export default class DashboardClassic extends Component {
302
303
acknowledgeAlerts = async (alerts) => {
304
const { httpClient, notifications } = this.props;
305
- await Promise.all(acknowledgeAlerts(httpClient, notifications, alerts));
+ const acknowledgePromises = await acknowledgeAlerts(httpClient, notifications, alerts);
306
+ await Promise.all(acknowledgePromises);
307
};
308
309
acknowledgeAlert = async () => {
0 commit comments