From 40b979c4447af8402a97705dd7af9b5e56b5aa54 Mon Sep 17 00:00:00 2001 From: Aditya Date: Thu, 15 Feb 2024 10:09:02 +0530 Subject: [PATCH] Fixed #3021 --- client/modules/IDE/actions/collections.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/modules/IDE/actions/collections.js b/client/modules/IDE/actions/collections.js index e8bda9623f..395a504727 100644 --- a/client/modules/IDE/actions/collections.js +++ b/client/modules/IDE/actions/collections.js @@ -80,7 +80,7 @@ export function addToCollection(collectionId, projectId) { const collectionName = response.data.name; - dispatch(setToastText(`Added to "${collectionName}`)); + dispatch(setToastText(`Added to "${collectionName}"`)); dispatch(showToast(TOAST_DISPLAY_TIME_MS)); return response.data; @@ -110,7 +110,7 @@ export function removeFromCollection(collectionId, projectId) { const collectionName = response.data.name; - dispatch(setToastText(`Removed from "${collectionName}`)); + dispatch(setToastText(`Removed from "${collectionName}"`)); dispatch(showToast(TOAST_DISPLAY_TIME_MS)); return response.data;