🔧 Bumped threetwo-ui-typings to 1.0.12
This commit is contained in:
@@ -74,7 +74,7 @@
|
||||
"sharp": "^0.28.1",
|
||||
"socket.io-client": "^4.3.2",
|
||||
"styled-components": "^5.3.3",
|
||||
"threetwo-ui-typings": "^1.0.11",
|
||||
"threetwo-ui-typings": "^1.0.12",
|
||||
"voca": "^1.4.0",
|
||||
"websocket": "^1.0.34",
|
||||
"ws": "^7.5.3",
|
||||
|
||||
@@ -70,7 +70,8 @@ export const getIssuesForSeries = (comicObjectID: any) => async (dispatch) => {
|
||||
});
|
||||
|
||||
const issues = await axios({
|
||||
url: `${COMICBOOKINFO_SERVICE_URI}/getIssuesForVolume`,
|
||||
url: `${IMPORT_SERVICE_BASE_URI}/getIssuesForSeries`,
|
||||
method: "POST",
|
||||
params: {
|
||||
comicObjectID,
|
||||
},
|
||||
|
||||
@@ -56,21 +56,23 @@ const VolumeDetails = (props): ReactElement => {
|
||||
className="issues-container"
|
||||
columnClassName="issues-column"
|
||||
>
|
||||
{issues.map((issue) => {
|
||||
return (
|
||||
<>
|
||||
<Card
|
||||
key={issue.id}
|
||||
imageUrl={issue.image.thumb_url}
|
||||
orientation={"vertical"}
|
||||
hasDetails={false}
|
||||
/>
|
||||
{!isEmpty(issue.potentialMatches)
|
||||
? "matches available"
|
||||
: null}
|
||||
</>
|
||||
);
|
||||
})}
|
||||
{!isUndefined(issues) && !isEmpty(issues)
|
||||
? issues.map((issue) => {
|
||||
return (
|
||||
<>
|
||||
<Card
|
||||
key={issue.id}
|
||||
imageUrl={issue.image.thumb_url}
|
||||
orientation={"vertical"}
|
||||
hasDetails={false}
|
||||
/>
|
||||
{!isEmpty(issue.potentialMatches)
|
||||
? "matches available"
|
||||
: null}
|
||||
</>
|
||||
);
|
||||
})
|
||||
: "loading"}
|
||||
</Masonry>
|
||||
{/* <pre>{JSON.stringify(comicBookDetails, undefined, 2)}</pre> */}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user