Skip to content

Commit

Permalink
add missing semi
Browse files Browse the repository at this point in the history
  • Loading branch information
Elise Alix committed May 25, 2023
1 parent 7e9f798 commit a8dd602
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/src/HomeHeaderView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function NewConversationView({
const canMessage = await client.canMessage(address);
if (!canMessage) {
setIsCreating(false);
setErr(`${address} is not on the XMTP Network yet`);
setErr(`${address} is not on the XMTP network yet`);
return;
}
const conversation = await client.conversations.newConversation(address);
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export async function createRandom(
}

export async function canMessage(clientAddress: string, peerAddress: string): Promise<boolean> {
return await XMTPModule.canMessage(clientAddress, peerAddress)
return await XMTPModule.canMessage(clientAddress, peerAddress);
}

export async function listConversations(
Expand Down

0 comments on commit a8dd602

Please sign in to comment.