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

@@ -108,7 +108,7 @@ function useHomeStoreDeep<U>(stateSelector: StateSelector<HomeState, U>) {
const Home = () => {
const [refreshing, setRefreshing] = useState(false)
const types = useStore(selectSettings.homeLists)
const fetchAlbumList = useStore(store => store.fetchLibraryAlbumList)
const fetchAlbumList = useStore(store => store.fetchAlbumList)
const setList = useHomeStore(store => store.setList)
const refresh = useCallback(async () => {