fix s3 bucket name in file uploader
This commit is contained in:
parent
4919d13e9a
commit
3d6cfd832d
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
import React, { PropTypes } from 'react';
|
||||
import Dropzone from 'dropzone';
|
||||
const s3Bucket = 'http://p5js-web-editor-test.s3.amazonaws.com/';
|
||||
const s3Bucket = `http://${process.env.S3_BUCKET}.s3.amazonaws.com/`;
|
||||
import * as UploaderActions from '../actions/uploader';
|
||||
import { bindActionCreators } from 'redux';
|
||||
import { connect } from 'react-redux';
|
||||
|
|
Loading…
Reference in a new issue