Skip to content

Commit 5b58102

Browse files
committed
Fix name conflict
1 parent 67f2242 commit 5b58102

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/BucketSync.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { animateScroll } from 'react-scroll';
66
const fixPath = window.require('fix-path');
77
const spawn = window.require('child_process').spawn;
88

9-
class BucketSelector extends Component {
9+
class BucketSync extends Component {
1010
constructor(props) {
1111
super(props);
1212
this.state = {
@@ -30,6 +30,7 @@ class BucketSelector extends Component {
3030
// TODO: Conditionally use s3 SDK or CLI depending on user config - https://www.npmjs.com/package/electron-config
3131
// TODO: https://github.com/atom/node-keytar - look into this for key storage
3232
fixPath();
33+
3334
var startMessage = `Starting Download from ${this.props.selectedBucket}`;
3435
this.updateConsoleOutput(startMessage);
3536

@@ -92,4 +93,4 @@ class BucketSelector extends Component {
9293
}
9394
}
9495

95-
export default BucketSelector;
96+
export default BucketSync;

0 commit comments

Comments
 (0)