Skip to content

Commit

Permalink
fix: hide smart message in messages feed
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmbl committed May 20, 2024
1 parent f567d1d commit 7ab1445
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## [1.9.3] - 2024-05-20

- fix: hide smart message in messages feed

## [1.9.2] - 2024-05-20

- feat: expose more metadata in messages feed
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dialectlabs/sdk",
"version": "1.9.2",
"version": "1.9.3",
"type": "module",
"repository": "git@github.com:dialectlabs/sdk.git",
"author": "dialectlabs",
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/src/wallet/wallet.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export interface DappMessage {
text: string;
timestamp: Date;
author: AccountAddress;
metadata?: MessageMetadata;
metadata?: Pick<MessageMetadata, 'title' | 'actions'>;
}

export interface FindDappMessageQuery {
Expand Down

0 comments on commit 7ab1445

Please sign in to comment.