Skip to content

Commit

Permalink
BC-5018: Remove Alert when deleting card from edit mode (#2798)
Browse files Browse the repository at this point in the history
* remove unneccessary alert feedback on expected error
  • Loading branch information
OliverHappe authored Sep 12, 2023
1 parent 109b3ad commit b987ea6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/data-board/CardState.composable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,7 @@ export const useCardState = (
await updateCardHeightCall(cardState.card.id, newHeight);
cardState.card.height = newHeight;
} catch (error) {
handleError(error, {
404: notifyWithTemplateAndReload("notUpdated"),
});
handleError(error, {});
}
};

Expand Down

0 comments on commit b987ea6

Please sign in to comment.