-
Notifications
You must be signed in to change notification settings - Fork 311
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(boxai-sidebar): Fix typo in avatarURL name #3810
fix(boxai-sidebar): Fix typo in avatarURL name #3810
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good but i'm wondering how formatting issues are passing?
c80a39f
c80a39f
to
8505ad8
Compare
8505ad8
to
9afa433
Compare
@@ -266,7 +269,7 @@ class SidebarPanels extends React.Component<Props, State> { | |||
hasSidebarInitialized={isInitialized} | |||
ref={this.boxAISidebar} | |||
startMarkName={MARK_NAME_JS_LOADING_BOXAI} | |||
userInfo={{name: currentUser?.name, avatarUrl: currentUser?.avatar_url}} | |||
userInfo={{ name: currentUser?.name, avatarURL: currentUser?.avatar_url }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like there's a spacing issue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that earlier we must have merged something with incorrect formatting, as this is already the second time we're fixing spacing and commas
8719da3
Fixes the issue with Avatar image not showing when asking a question in AI Sidebar.
Before
After