Skip to content

Commit 2cfb042

Browse files
committed
hard code show to true
1 parent b9f4f10 commit 2cfb042

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/compounds/ActionsGroup/ActionsGroup.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ const ActionsGroup = ({ initialFiles }) => {
4949
{(action === 'ViewFiles' && show)
5050
&& (
5151
<ViewFiles
52-
show={show}
5352
handleClose={handleClose}
5453
initialFiles={initialFiles}
5554
// onSubmit={handleSendingMessagesOrFiles}

src/compounds/ActionsGroup/actions/ViewFiles.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const ViewFiles = ({ initialFiles, handleClose, show }) => {
6464
// setFiles(remainingFiles)
6565
// }
6666
return (
67-
<Offcanvas show={show} onHide={handleClose} placement='end' scroll='true'>
67+
<Offcanvas show onHide={handleClose} placement='end' scroll='true'>
6868
<Offcanvas.Header className='d-flex border-bottom px-3 py-2 bg-light' closeButton>
6969
<Offcanvas.Title>Documents</Offcanvas.Title>
7070
</Offcanvas.Header>

0 commit comments

Comments
 (0)