Skip to content

Commit

Permalink
#2490 - removed accidental dereferencing of appConfig.isPkiAuthenticated
Browse files Browse the repository at this point in the history
  • Loading branch information
rmmayo committed May 20, 2024
1 parent 19fcd20 commit 1cf50fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const notCurrentUser = (userId) => {
const addUserRole = () => {
options.value.busy = true
const { userIdForDisplay, userId, dn } = selectedUser.value
const pkiAuthenticated = appConfig.isPkiAuthenticated.value
const pkiAuthenticated = appConfig.isPkiAuthenticated
const userIdParam = pkiAuthenticated ? dn : userId
QuizService.addQuizAdmin(route.params.quizId, userIdParam)
.then(() => {
Expand Down

0 comments on commit 1cf50fb

Please sign in to comment.