Skip to content

Commit

Permalink
ISSD-1508 SF
Browse files Browse the repository at this point in the history
  • Loading branch information
kevenleone authored and brianchandotcom committed Nov 6, 2023
1 parent baffe0e commit 1602db4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ const Licenses = () => {
return provisioningKoroneikiOAuth2.getOrderLicenseKeys(
orderId as string
);
} catch (error) {
}
catch (error) {
return {
items: [],
totalCount: 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ export function ReviewAndSubmitAppPage({
productResponse.categories.forEach((category: any) => {
if (category.vocabulary === 'marketplace app category') {
productCategories.push(category.name);
} else if (category.vocabulary === 'marketplace app tags') {
}
else if (category.vocabulary === 'marketplace app tags') {
productTags.push(category.name);
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ class ProvisioningKoroneikiOAuth2 extends OAuth2Client {
method: 'POST',

// Necessary due the response comes resolved already, not necessary to parse to .json()

}) as unknown) as Promise<LicenseKey>;
}

Expand Down

0 comments on commit 1602db4

Please sign in to comment.