Skip to content

Commit

Permalink
Bump ext to fix issue with client sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
PopDaph committed Dec 11, 2024
1 parent e0880e4 commit ceec4c5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion extension/app/src/components/conversation/UserMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function UserMessage({
return (
<ConversationMessage
pictureUrl={message.user?.image || message.context.profilePictureUrl}
name={message.context.fullName}
name={message.context.fullName ?? null}
renderName={(name) => <div className="text-base font-medium">{name}</div>}
type="user"
citations={citations}
Expand Down
2 changes: 1 addition & 1 deletion extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Dust",
"version": "0.0.2",
"version": "0.0.3",
"description": "Get more done, faster, with the power of your assistants at your fingertips.",
"icons": {
"16": "images/dust16.png",
Expand Down
2 changes: 1 addition & 1 deletion extension/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions sdks/js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ceec4c5

Please sign in to comment.