Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
MattWong-ca committed Dec 9, 2024
1 parent 7b80a5d commit 88e7876
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
8 changes: 1 addition & 7 deletions src/files/file-input/FileInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,7 @@ class FileInput extends React.Component {
<NewFolderIcon className='fill-aqua w2 h2 mr1' />
{t('newFolder')}
</Option>
<Option
onClick={this.onBulkCidImport}
// TO-DO:
// id='add-bulk-cid'
// onCliTutorMode={() => this.onCliTutorMode(cliCmdKeys.FROM_IPFS)}
// isCliTutorModeEnabled={isCliTutorModeEnabled}
>
<Option onClick={this.onBulkCidImport} id='bulk-cid-import'>
<DocumentIcon className='fill-aqua w2 mr1' />
{t('bulkImport')}
</Option>
Expand Down
5 changes: 2 additions & 3 deletions src/files/modals/bulk-import-modal/BulkImportModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,13 @@ class BulkImportModal extends React.Component {
</div>

<input
id='bulk-import'
type='file'
className='dn'
multiple
accept='.txt'
onChange={this.onChange}
// className='input-reset'
// id='bulk-import'
ref={el => { this.bulkCidInput = el }}
onChange={this.onChange}
/>
<Button
onClick={this.selectFile}
Expand Down

0 comments on commit 88e7876

Please sign in to comment.