Now playing
-
@@ -75,7 +84,7 @@ const AddLabel = props => {
)
}
-const PlayLabel = (props) => {
+const PlayLabel = props => {
return (
Played
@@ -84,7 +93,7 @@ const PlayLabel = (props) => {
)
}
-const VoteLabel = (props) => {
+const VoteLabel = props => {
return (
Votes
@@ -111,14 +120,16 @@ const CurrentTrack = props => {
-
0} total={calcVoteAverage(votes)} votes={votes} />
+ 0}
+ total={calcVoteAverage(votes)}
+ votes={votes}
+ />
diff --git a/frontend/src/components/progress-bar/index.js b/frontend/src/components/progress-bar/index.js
index 38856eb..6aa39f6 100644
--- a/frontend/src/components/progress-bar/index.js
+++ b/frontend/src/components/progress-bar/index.js
@@ -12,7 +12,9 @@ const ProgressBar = () => {
return (
{millisToMinutesAndSeconds(track.length)}
- {millisToMinutesAndSeconds(timer.remaining)}
+
+ {millisToMinutesAndSeconds(timer.remaining)}
+
)
diff --git a/frontend/src/components/settings/index.js b/frontend/src/components/settings/index.js
index 70d89dc..6fc2add 100644
--- a/frontend/src/components/settings/index.js
+++ b/frontend/src/components/settings/index.js
@@ -6,26 +6,19 @@ export const Settings = () => {
const { googleUser, signIn, signOut } = useContext(GoogleAuthContext)
let avatar = (
-