mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
fix: handle null userInfo in manual token auth response
This commit is contained in:
parent
7284fd0b62
commit
c75188bea6
1 changed files with 1 additions and 1 deletions
|
|
@ -2266,7 +2266,7 @@ export const webviewMessageHandler = async (
|
|||
await provider.postStateToWebview()
|
||||
provider.postMessageToWebview({
|
||||
type: "authenticatedUser",
|
||||
userInfo: CloudService.instance.getUserInfo(),
|
||||
userInfo: CloudService.instance.getUserInfo() || undefined,
|
||||
})
|
||||
} catch (error) {
|
||||
provider.log(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue