Skip to content

Commit

Permalink
fix: update
Browse files Browse the repository at this point in the history
  • Loading branch information
wenytang-ms committed Feb 19, 2025
1 parent 21681d7 commit 6702979
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ async function populateIdentityOptionsAsync(
const token = await credential.getToken();
const decoded = jwt.decode(token.token, { complete: true }) as any;
const meOption : QuickPickItem = {
label: nonNullValue(decoded.payload.unique_name),
description: decoded.payload.oid,
label: nonNullValue(decoded.payload!.unique_name!),
description: decoded.payload!.oid,
detail: "Current signedIn user"
};
options.push(meOption);
Expand Down

0 comments on commit 6702979

Please sign in to comment.