We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28a0f22 commit 3b06d6fCopy full SHA for 3b06d6f
src/components/TopBar/TopBar.js
@@ -14,7 +14,9 @@ export default class TopBar extends React.Component {
14
<React.Fragment>
15
<div id="topbar-container">
16
<BackButton link={this.props.backLink} />
17
- <h3 id="topbar-title">{this.props.stationName}</h3>
+ <h3 id="topbar-title">
18
+ {this.props.stationName && removeHyphens(this.props.stationName)}
19
+ </h3>
20
{this.props.timer && (
21
<h3 id="topbar-timer">{timerFormat(this.props.time)}</h3>
22
)}
0 commit comments