chore: linter

This commit is contained in:
Lei Nelissen
2022-11-12 17:47:43 +01:00
parent b2bd211758
commit d81c4c3c92
2 changed files with 5 additions and 5 deletions

View File

@@ -10,10 +10,10 @@ import PauseIcon from 'assets/icons/pause.svg';
const BUTTON_SIZE = 40;
const pause = TrackPlayer.pause;
const play = TrackPlayer.play;
const next = TrackPlayer.skipToNext;
const previous = TrackPlayer.skipToPrevious;
const pause = () => TrackPlayer.pause();
const play = () => TrackPlayer.play();
const next = () => TrackPlayer.skipToNext();
const previous = () => TrackPlayer.skipToPrevious();
const Container = styled.View`
align-items: center;