Skip to content

Commit

Permalink
fix(admin-ui): display upload ssa UI if configs are not valid #1310
Browse files Browse the repository at this point in the history
Signed-off-by: Jeet Viramgama <jviramgama5@gmail.com>
  • Loading branch information
jv18creator committed Sep 6, 2023
1 parent da81ebe commit 81173c9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions admin-ui/app/redux/sagas/LicenseSaga.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ function* uploadNewSsaToken({ payload }) {
yield put(checkLicensePresent())
// window.location.reload()
} catch (error) {
yield put(checkLicenseConfigValidResponse(false))
console.log(error)
}
}
Expand All @@ -205,6 +206,7 @@ function* checkAdminuiLicenseConfig() {
yield put(checkLicenseConfigValidResponse(response?.success))
} catch (error) {
console.log(error)
yield put(checkLicenseConfigValidResponse(false))
}
}

Expand Down

0 comments on commit 81173c9

Please sign in to comment.