diff --git a/src/client/components/Volumes/Volumes.tsx b/src/client/components/Volumes/Volumes.tsx index 1de8afb..3c64d34 100644 --- a/src/client/components/Volumes/Volumes.tsx +++ b/src/client/components/Volumes/Volumes.tsx @@ -9,6 +9,27 @@ import { isUndefined } from "lodash"; import { convert } from "html-to-text"; export const Volumes = (props): ReactElement => { + const volumes = useSelector( + (state: RootState) => state.fileOps.librarySearchResults, + ); + const dispatch = useDispatch(); + useEffect(() => { + dispatch( + searchIssue( + { + query: {}, + }, + { + pagination: { + size: 25, + from: 0, + }, + type: "volumes", + }, + ), + ); + }, []); + console.log(volumes); return