fix(frontend): sync folder for premium users (#3251)

# Description

Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.

## Checklist before requesting a review

Please delete options that are not relevant.

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged

## Screenshots (if appropriate):
This commit is contained in:
Antoine Dewez 2024-09-24 12:52:33 +02:00 committed by GitHub
parent 1456015c68
commit ad400fb4f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 7 deletions

View File

@ -118,7 +118,9 @@ export const FromConnections = (): JSX.Element => {
selectable={!!isPremium || currentProvider === "Notion"} selectable={!!isPremium || currentProvider === "Notion"}
id={folder.id} id={folder.id}
icon={folder.icon} icon={folder.icon}
isAlsoFile={currentProvider === "Notion"} isAlsoFile={
currentProvider === "Notion" ? true : undefined
}
/> />
</div> </div>
))} ))}

View File

@ -41,7 +41,7 @@ export const SyncElementLine = ({
const [checked, setChecked] = useState<boolean>(initialChecked); const [checked, setChecked] = useState<boolean>(initialChecked);
const showCheckbox: boolean = isAlsoFile ?? !isFolder; const showCheckbox: boolean = isAlsoFile ?? selectable;
const handleSetChecked = () => { const handleSetChecked = () => {
setOpenedConnections((prevState) => { setOpenedConnections((prevState) => {
@ -82,11 +82,7 @@ export const SyncElementLine = ({
} }
}} }}
> >
<div <div className={`${styles.left} ${!showCheckbox ? styles.folder : ""}`}>
className={`${styles.left} ${
!isAlsoFile && isFolder ? styles.folder : ""
}`}
>
{showCheckbox && ( {showCheckbox && (
<div <div
onMouseEnter={() => setIsCheckboxHovered(true)} onMouseEnter={() => setIsCheckboxHovered(true)}