diff --git a/client/modules/IDE/components/AddToCollectionList.jsx b/client/modules/IDE/components/AddToCollectionList.jsx
index 75713367ee..8fc479c2f2 100644
--- a/client/modules/IDE/components/AddToCollectionList.jsx
+++ b/client/modules/IDE/components/AddToCollectionList.jsx
@@ -5,6 +5,7 @@ import { useTranslation } from 'react-i18next';
import { useDispatch, useSelector } from 'react-redux';
import styled from 'styled-components';
import { Loader } from '../../App/components/Loader';
+import CollectionCreate from '../../User/components/CollectionCreate';
import {
addToCollection,
getCollections,
@@ -63,7 +64,7 @@ const AddToCollectionList = ({ projectId }) => {
if (showLoader) {
return ;
} else if (collections.length === 0) {
- return t('AddToCollectionList.Empty');
+ return ;
}
return (