Skip to content

Commit

Permalink
Make modals scrollable
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielrindlaub committed Jan 10, 2024
1 parent 82ee762 commit 05ffc0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/components/Modal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ import * as DialogPrimitive from '@radix-ui/react-dialog';
import PanelHeader from './PanelHeader';

const ModalBody = styled('div', {
margin: '$3',
padding: '$3',
maxHeight: 'calc(85vh - $7)',
overflowY: 'scroll'
});

const overlayShow = keyframes({
Expand Down
1 change: 0 additions & 1 deletion src/features/upload/BulkUploadTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ const BulkUploadTable = ({ percentUploaded }) => {
const errorsExportLoading = useSelector(selectErrorsExportLoading);
const stopBatchLoading = useSelector(selectStopBatchLoading);
const redriveBatchLoading = useSelector(selectRedriveBatchLoading);
console.log('redriveBatchLoading: ', redriveBatchLoading)

const dispatch = useDispatch();

Expand Down

0 comments on commit 05ffc0b

Please sign in to comment.