Skip to content

Commit

Permalink
use null instead of empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
alicebartlett authored Feb 20, 2020
1 parent e52fa24 commit f6c2167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/x-podcast-launchers/src/PodcastLaunchers.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class PodcastLaunchers extends Component {
<h2 className={styles.headingChooseApp}>Subscribe via your installed podcast app</h2>
<ul className={styles.podcastAppLinksWrapper}>
{generateAppLinks(rssUrl).map(({ name, url, trackingId }) => (
<li key={name} className={showLinksOnAllBreakpoints ? "" : styles.hidePodcastLinkAtWide}>
<li key={name} className={showLinksOnAllBreakpoints ? null : styles.hidePodcastLinkAtWide}>
<a
href={url}
className={styles.podcastAppLink}
Expand Down

0 comments on commit f6c2167

Please sign in to comment.