rename to remove "Library" from methods

This commit is contained in:
austinried
2022-03-22 16:29:36 +09:00
parent e0db4931f1
commit 4e978360ce
11 changed files with 34 additions and 34 deletions

View File

@@ -144,7 +144,7 @@ const PlaylistView = React.memo<{
),
)
const fetchPlaylist = useStore(store => store.fetchLibraryPlaylist)
const fetchPlaylist = useStore(store => store.fetchPlaylist)
useEffect(() => {
if (!playlist || !songs) {
@@ -172,7 +172,7 @@ const AlbumView = React.memo<{
),
)
const fetchAlbum = useStore(store => store.fetchLibraryAlbum)
const fetchAlbum = useStore(store => store.fetchAlbum)
useEffect(() => {
if (!album || !songs) {