Skip to content

Commit f3f4b6f

Browse files
committed
♻️(front) disable multi download
As we discussed this feature will not be present in the mvp. We night to implement an archive bundling of the mutliple selected files to achieve that.
1 parent aa11e06 commit f3f4b6f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/frontend/apps/drive/src/features/explorer/components/ExplorerSelectionBar.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ export const ExplorerSelectionBar = () => {
4444
return () => {
4545
window.removeEventListener("keydown", handleKeyDown);
4646
};
47-
// eslint-disable-next-line react-hooks/exhaustive-deps
4847
}, [selectedItems]);
4948

5049
return (
@@ -56,13 +55,13 @@ export const ExplorerSelectionBar = () => {
5655
})}
5756
</div>
5857
<div className="explorer__selection-bar__actions">
59-
<Button
58+
{/* <Button
6059
onClick={handleClearSelection}
6160
icon={<span className="material-icons">download</span>}
6261
color="primary-text"
6362
size="small"
6463
aria-label={t("explorer.selectionBar.download")}
65-
/>
64+
/> */}
6665
<Button
6766
onClick={handleClearSelection}
6867
icon={<span className="material-icons">arrow_forward</span>}

0 commit comments

Comments
 (0)