Skip to content

Commit

Permalink
fix(gatsby-cli): fallback to empty string when appName is em… (#15943)
Browse files Browse the repository at this point in the history
  • Loading branch information
Seldszar authored and DSchau committed Jul 23, 2019
1 parent b7379d5 commit 59fdbc1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class Develop extends Component {
<Box height={1} flexDirection="row">
<Color>{this.state.pagesCount} pages</Color>
<Box flexGrow={1} />
<Color>{this.props.stage.context.appName}</Color>
<Color>{this.props.stage.context.appName || ``}</Color>
</Box>
</Box>
)
Expand Down

0 comments on commit 59fdbc1

Please sign in to comment.