We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f68b8cf commit cbb91a9Copy full SHA for cbb91a9
components/sections/migrate/deep-scan-modal.tsx
@@ -390,7 +390,7 @@ export function DeepScanModal({
390
391
return (
392
<Dialog open={isOpen} onOpenChange={handleClose}>
393
- <DialogContent className={isScanning || isCompleted ? 'max-w-2xl' : 'sm:max-w-lg'}>
+ <DialogContent className={cn('max-h-[100vh] overflow-y-auto', isScanning || isCompleted ? 'max-w-2xl' : 'sm:max-w-lg')}>
394
{isScanning || isCompleted ? renderProgressView() : renderConfigView()}
395
396
<DialogFooter>
0 commit comments