diff --git a/src/screens/modals/Player/components/Backbutton.tsx b/src/screens/modals/Player/components/Backbutton.tsx index 6694906..89f29de 100644 --- a/src/screens/modals/Player/components/Backbutton.tsx +++ b/src/screens/modals/Player/components/Backbutton.tsx @@ -12,7 +12,6 @@ function BackButton() { const navigation = useNavigation(); const handlePress = useCallback(() => { - console.log(navigation.canGoBack()); navigation.goBack(); }, [navigation]); diff --git a/src/store/downloads/actions.ts b/src/store/downloads/actions.ts index 8227e3e..fffd992 100644 --- a/src/store/downloads/actions.ts +++ b/src/store/downloads/actions.ts @@ -49,7 +49,6 @@ export const downloadTrack = createAsyncThunk( dispatch(initializeDownload({ id, jobId, size: contentLength, location })); }, progress: (result) => { - console.log('PROGRESS', result, url); // Dispatch a progress update dispatch(progressDownload({ id, progress: result.bytesWritten / result.contentLength })); },