This commit is contained in:
Pedro Silva 2023-05-12 12:27:34 +01:00
parent e792b717c5
commit 9b8e2718ed
1 changed files with 3 additions and 1 deletions

View File

@ -22,7 +22,9 @@ export default class LicenseAPI {
) )
if (response.status !== 200) { if (response.status !== 200) {
throw new Error(`Could not update license for accountId=${accountId}: ${response.status}`) throw new Error(
`Could not update license for accountId=${accountId}: ${response.status}`
)
} }
return [response, json] return [response, json]
} }