diff --git a/src/js/components/SpotifyAuthenticationFrame.js b/src/js/components/SpotifyAuthenticationFrame.js
index 1a664e96..d7c07a50 100755
--- a/src/js/components/SpotifyAuthenticationFrame.js
+++ b/src/js/components/SpotifyAuthenticationFrame.js
@@ -84,9 +84,9 @@ class SpotifyAuthenticationFrame extends React.Component{
}
renderRefreshButton(){
- if( !this.props.authorized || !window._testMode) return null;
+ if (!this.props.authorized) return null
- if( this.props.refreshing_token ){
+ if (this.props.refreshing_token){
return (
);
- }else{
+ } else {
return (
-
- );
+
+ )
}
}