diff options
author | Eug-VS <eug-vs@keemail.me> | 2020-01-12 18:10:01 +0300 |
---|---|---|
committer | Eug-VS <eug-vs@keemail.me> | 2020-01-12 18:10:01 +0300 |
commit | 364c16c467b5257980337a06497647ebc13e4c35 (patch) | |
tree | c4b8fb31a112ef3fe38b6f02a17d75d722ae3dea /src/components | |
parent | c2d7aa43ab54726b4741bc426d63093ef6392a91 (diff) | |
parent | 23a5631531861ac76d532c0d9d2b19dd1862f739 (diff) | |
download | chrono-cube-ui-364c16c467b5257980337a06497647ebc13e4c35.tar.gz |
Merge branch 'master' into contribute
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/SolutionCard/SolutionCard.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/SolutionCard/SolutionCard.js b/src/components/SolutionCard/SolutionCard.js index 7cca74c..1fff873 100644 --- a/src/components/SolutionCard/SolutionCard.js +++ b/src/components/SolutionCard/SolutionCard.js @@ -54,9 +54,10 @@ const SolutionCard = ({ data, removeThisCard }) => { }; const handleDelete = () => { - del(`solutions/${data.id}/`); + del(`solutions/${data.id}/`).then(() => { + removeThisCard(data.id); + }); handleClose(); - removeThisCard(data.id); }; return ( |