🔧 Bumped threetwo-ui-typings to 1.0.12

This commit is contained in:
2022-02-01 11:04:09 -08:00
parent 3cedb9238b
commit d819bac7f2
3 changed files with 20 additions and 17 deletions

View File

@@ -74,7 +74,7 @@
"sharp": "^0.28.1", "sharp": "^0.28.1",
"socket.io-client": "^4.3.2", "socket.io-client": "^4.3.2",
"styled-components": "^5.3.3", "styled-components": "^5.3.3",
"threetwo-ui-typings": "^1.0.11", "threetwo-ui-typings": "^1.0.12",
"voca": "^1.4.0", "voca": "^1.4.0",
"websocket": "^1.0.34", "websocket": "^1.0.34",
"ws": "^7.5.3", "ws": "^7.5.3",

View File

@@ -70,7 +70,8 @@ export const getIssuesForSeries = (comicObjectID: any) => async (dispatch) => {
}); });
const issues = await axios({ const issues = await axios({
url: `${COMICBOOKINFO_SERVICE_URI}/getIssuesForVolume`, url: `${IMPORT_SERVICE_BASE_URI}/getIssuesForSeries`,
method: "POST",
params: { params: {
comicObjectID, comicObjectID,
}, },

View File

@@ -56,7 +56,8 @@ const VolumeDetails = (props): ReactElement => {
className="issues-container" className="issues-container"
columnClassName="issues-column" columnClassName="issues-column"
> >
{issues.map((issue) => { {!isUndefined(issues) && !isEmpty(issues)
? issues.map((issue) => {
return ( return (
<> <>
<Card <Card
@@ -70,7 +71,8 @@ const VolumeDetails = (props): ReactElement => {
: null} : null}
</> </>
); );
})} })
: "loading"}
</Masonry> </Masonry>
{/* <pre>{JSON.stringify(comicBookDetails, undefined, 2)}</pre> */} {/* <pre>{JSON.stringify(comicBookDetails, undefined, 2)}</pre> */}
</div> </div>