diff --git a/src/client/actions/comicinfo.actions.tsx b/src/client/actions/comicinfo.actions.tsx index b93433e..7d196da 100644 --- a/src/client/actions/comicinfo.actions.tsx +++ b/src/client/actions/comicinfo.actions.tsx @@ -53,3 +53,8 @@ export const comicinfoAPICall = (options) => async (dispatch) => { }); } }; + +export const applyComicVineMatch = options => async (dispatch) => { + console.log(options) + +} diff --git a/src/client/components/Library.tsx b/src/client/components/Library.tsx index 8f3899e..27f0a4c 100644 --- a/src/client/components/Library.tsx +++ b/src/client/components/Library.tsx @@ -23,6 +23,7 @@ export const Library = ({}: IComicBookLibraryProps): ReactElement => { const data = useSelector( (state: RootState) => state.fileOps.recentComics.docs, ); + const columns = useMemo( () => [ { @@ -48,7 +49,9 @@ export const Library = ({}: IComicBookLibraryProps): ReactElement => {