From 4c17b3818e44f7ada4ce55c2b0205c4bbecdbb0f Mon Sep 17 00:00:00 2001 From: jessopb <36554050+jessopb@users.noreply.github.com> Date: Wed, 15 Dec 2021 17:56:20 -0500 Subject: [PATCH] quick fix for download connecting... (#7354) --- ui/redux/selectors/file_info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/redux/selectors/file_info.js b/ui/redux/selectors/file_info.js index 55dc16499..57170d323 100644 --- a/ui/redux/selectors/file_info.js +++ b/ui/redux/selectors/file_info.js @@ -37,7 +37,7 @@ export const makeSelectDownloadingForUri = (uri) => return byOutpoint[fileInfo.outpoint]; }); -export const selectUrisLoading = createSelector(selectState, (state) => state.urisLoading || {}); +export const selectUrisLoading = createSelector(selectState, (state) => state.fetching || {}); export const makeSelectLoadingForUri = (uri) => createSelector(selectUrisLoading, makeSelectClaimForUri(uri), (fetchingByOutpoint, claim) => {