Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rygine committed Jan 6, 2025
1 parent e58005e commit 39d70ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bindings_node/src/conversation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ impl Conversation {
installation_ids: member
.installation_ids
.into_iter()
.map(|id| hex::encode(id))
.map(hex::encode)
.collect(),
permission_level: match member.permission_level {
XmtpPermissionLevel::Member => PermissionLevel::Member,
Expand Down
2 changes: 1 addition & 1 deletion bindings_wasm/src/conversation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ impl Conversation {
installation_ids: member
.installation_ids
.into_iter()
.map(|id| hex::encode(id))
.map(hex::encode)
.collect(),
permission_level: match member.permission_level {
XmtpPermissionLevel::Member => PermissionLevel::Member,
Expand Down

0 comments on commit 39d70ac

Please sign in to comment.