Skip to content

Commit 00ea713

Browse files
committed
use create instead of import
1 parent e41e2b1 commit 00ea713

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/components/molecules/headers/SideBarSubHeader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const SideBarSubHeader = () => {
3030
fullWidth={true}
3131
>
3232
<PlusIcon className='w-4 h-4' />
33-
<span className='font-semibold'>Import</span>
33+
<span className='font-semibold'>Create</span>
3434
</Button>
3535
</div>
3636
<div>

src/components/molecules/modals/ImportCollectionModal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const ImportCollectionModal = ({ closeFn = () => null, open = false }) => {
9898
>
9999
<Dialog.Panel className='w-full max-w-xl p-6 overflow-hidden text-left align-middle transition-all transform bg-white rounded shadow-xl'>
100100
<Dialog.Title as='h3' className='pb-4 text-lg font-semibold text-center border-b border-gray-300'>
101-
Import a Collection
101+
Create a Collection
102102
</Dialog.Title>
103103
{/* ToDo: Add the message of instructions here, if that is not required then we can remove this div */}
104104
{/* <div className='mt-4'>

src/components/molecules/workspace/EmptyWorkSpaceContent.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ const EmptyWorkSpaceContent = () => {
1919
const [generateFlowTestModalOpen, setGenerateFlowTestModalOpen] = useState(false);
2020
const [newEnvironmentFileModal, setNewEnvironmentFileModal] = useState(false);
2121
return (
22-
<div className='flex h-full items-center justify-center text-cyan-900'>
23-
<div className='flex max-w-xl flex-col gap-8 2xl:gap-10'>
22+
<div className='flex items-center justify-center h-full text-cyan-900'>
23+
<div className='flex flex-col max-w-xl gap-8 2xl:gap-10'>
2424
<div className='text-center'>
2525
<div className='flex items-center justify-center'>
26-
<RectangleStackIcon className='h-24 w-24' />
26+
<RectangleStackIcon className='w-24 h-24' />
2727
</div>
2828
<p className='text-2xl'>
29-
A <span className='font-montserrat font-semibold italic'>Collection</span> is a ...
29+
A <span className='italic font-semibold font-montserrat'>Collection</span> is a ...
3030
</p>
3131
<p className='mt-2 text-sm italic 2xl:mt-4'>
3232
A Collection is a set of flows where each flow is a set of API requests chained together, along with each
@@ -70,7 +70,7 @@ const EmptyWorkSpaceContent = () => {
7070
onClickHandle={() => setImportCollectionModal(true)}
7171
fullWidth={true}
7272
>
73-
Import a Collection
73+
Create a Collection
7474
</Button>
7575
</>
7676
)}
@@ -81,10 +81,10 @@ const EmptyWorkSpaceContent = () => {
8181
<HorizontalDivider themeColor={'bg-cyan-900'} themeStyles={'opacity-75'} />
8282
<div className='text-center'>
8383
<div className='flex items-center justify-center'>
84-
<Square3Stack3DIcon className='h-24 w-24' />
84+
<Square3Stack3DIcon className='w-24 h-24' />
8585
</div>
8686
<p className='text-2xl'>
87-
An <span className='font-montserrat font-semibold italic'>Environment</span> is a ...
87+
An <span className='italic font-semibold font-montserrat'>Environment</span> is a ...
8888
</p>
8989
<p className='mt-2 text-sm italic 2xl:mt-4'>
9090
An environment is a set of one or more variables that you can reference when sending API requests using

0 commit comments

Comments
 (0)