make sections always visible

This commit is contained in:
abhinav-grd 2021-10-04 12:15:18 +05:30
parent bfa24ce19a
commit 652487d262

View file

@ -145,10 +145,6 @@ export default function Collections(props: CollectionProps) {
const user: User = getData(LS_KEYS.USER);
if (!collections || collections.length === 0) {
return null;
}
const collectionOptions = CollectionOptions({
syncWithRemote: props.syncWithRemote,
setCollectionNamerAttributes: props.setCollectionNamerAttributes,
@ -257,18 +253,14 @@ export default function Collections(props: CollectionProps) {
</Chip>
</OverlayTrigger>
))}
{activeCollection === ARCHIVE_SECTION && (
<SectionChip
section={ARCHIVE_SECTION}
label={constants.ARCHIVE}
/>
)}
{activeCollection === TRASH_SECTION && (
<SectionChip
section={TRASH_SECTION}
label={constants.TRASH}
/>
)}
<SectionChip
section={ARCHIVE_SECTION}
label={constants.ARCHIVE}
/>
<SectionChip
section={TRASH_SECTION}
label={constants.TRASH}
/>
</Wrapper>
{scrollObj.scrollLeft <
scrollObj.scrollWidth - scrollObj.clientWidth && (