diff --git a/package.json b/package.json
index bc7b51a..e756847 100644
--- a/package.json
+++ b/package.json
@@ -20,7 +20,7 @@
"@bluelovers/fast-glob": "https://github.com/rishighan/fast-glob-v2-api.git",
"@dnd-kit/core": "^4.0.0",
"@dnd-kit/sortable": "^5.0.0",
- "@fortawesome/fontawesome-free": "^6.0.0",
+ "@fortawesome/fontawesome-free": "^6.1.1",
"@types/mime-types": "^2.1.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
diff --git a/src/client/components/Dashboard/Dashboard.tsx b/src/client/components/Dashboard/Dashboard.tsx
index 5c1c830..da90cf7 100644
--- a/src/client/components/Dashboard/Dashboard.tsx
+++ b/src/client/components/Dashboard/Dashboard.tsx
@@ -4,14 +4,14 @@ import ZeroState from "./ZeroState";
import { RecentlyImported } from "./RecentlyImported";
import { WantedComicsList } from "./WantedComicsList";
import { VolumeGroups } from "./VolumeGroups";
+import { LibraryStatistics } from "./LibraryStatistics";
import { PullList } from "./PullList";
import {
fetchVolumeGroups,
getComicBooks,
} from "../../actions/fileops.actions";
import { getLibraryStatistics } from "../../actions/comicinfo.actions";
-import { isEmpty, isUndefined, map } from "lodash";
-import prettyBytes from "pretty-bytes";
+import { isEmpty } from "lodash";
export const Dashboard = (): ReactElement => {
const dispatch = useDispatch();
@@ -66,115 +66,7 @@ export const Dashboard = (): ReactElement => {
Comics marked as wanted from various sources.
diff --git a/src/client/components/Library/ComicVineDetails.tsx b/src/client/components/Library/ComicVineDetails.tsx index be88bf6..868a43e 100644 --- a/src/client/components/Library/ComicVineDetails.tsx +++ b/src/client/components/Library/ComicVineDetails.tsx @@ -1,33 +1,73 @@ import React, { ReactElement } from "react"; import PropTypes from "prop-types"; import ellipsize from "ellipsize"; +import Card from "../Carda"; +import convert from "html-to-text"; export const ComicVineDetails = (comicVineData): ReactElement => { const { data } = comicVineData; + console.log(data); return ( -