Skip to content

Commit

Permalink
chore: fix overflow issues in import modal
Browse files Browse the repository at this point in the history
  • Loading branch information
amanharwara committed Dec 13, 2023
1 parent b7f037a commit 8e73cee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const ImportModal = ({ importModalController }: { importModalController: ImportM
return (
<ModalOverlay isOpen={isVisible} close={close}>
<Modal title="Import" close={close} actions={modalActions} className="flex flex-col">
<div className="min-h-0 flex-grow px-4 py-4">
<div className="min-h-0 flex-grow overflow-y-auto px-4 py-4">
{!files.length && <ImportModalInitialPage setFiles={setFiles} selectFiles={selectFiles} />}
{files.length > 0 && (
<>
Expand Down

0 comments on commit 8e73cee

Please sign in to comment.