impl async storage for extra queue data

finally fixes shuffle (ugh)
This commit is contained in:
austinried
2021-07-22 11:23:18 +09:00
parent f859be51a5
commit 4f69b36c7b
4 changed files with 148 additions and 84 deletions

View File

@@ -135,10 +135,10 @@ const ProgressState = () => {
}
const Debug = () => {
const value = useAtomValue(currentTrackAtom)
const value = useAtomValue(queueAtom)
useEffect(() => {
// ToastAndroid.show(value?.title || 'undefined', 1)
console.log(value.map(t => t.title))
}, [value])
return <></>