Skip to content

Commit

Permalink
add file text to publish state
Browse files Browse the repository at this point in the history
  • Loading branch information
btzr-io authored Jun 27, 2020
1 parent e4c05ce commit ebf0d49
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/redux/reducers/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { CHANNEL_ANONYMOUS } from 'constants/claim';

type PublishState = {
editingURI: ?string,
fileText: ?string,
filePath: ?string,
contentIsFree: boolean,
fileDur: number,
Expand Down Expand Up @@ -36,6 +37,7 @@ type PublishState = {

const defaultState: PublishState = {
editingURI: undefined,
fileText: '',
filePath: undefined,
fileDur: 0,
fileSize: 0,
Expand Down

0 comments on commit ebf0d49

Please sign in to comment.