From ae2109c980fc37023661b4cfef3eecfcb044fdb2 Mon Sep 17 00:00:00 2001 From: Sara Tavares <29093946+stavares843@users.noreply.github.com> Date: Fri, 20 Dec 2024 19:43:53 +0000 Subject: [PATCH] chore(typos): fix typos (#962) --- src/lib/wasm/CommunitiesStore.ts | 8 ++++---- src/routes/wallet/+page.svelte | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/lib/wasm/CommunitiesStore.ts b/src/lib/wasm/CommunitiesStore.ts index cd8cd920f..c2c64c0ad 100644 --- a/src/lib/wasm/CommunitiesStore.ts +++ b/src/lib/wasm/CommunitiesStore.ts @@ -253,11 +253,11 @@ class CommunitiesStore { }, `Error downloading community attachment from community ${community_id} for message ${message_id}`) } - async sendCommunityChannelMesssageEvent(community_id: string, channel_id: string, event: wasm.MessageEvent) { - return await this.get(r => r.send_community_channel_messsage_event(community_id, channel_id, event), `Error sending event ${event}`) + async sendCommunityChannelMessageEvent(community_id: string, channel_id: string, event: wasm.MessageEvent) { + return await this.get(r => r.send_community_channel_message_event(community_id, channel_id, event), `Error sending event ${event}`) } - async cancelCommunityChannelMesssageEvent(community_id: string, channel_id: string, event: wasm.MessageEvent) { - return await this.get(r => r.cancel_community_channel_messsage_event(community_id, channel_id, event), `Error sending event ${event}`) + async cancelCommunityChannelMessageEvent(community_id: string, channel_id: string, event: wasm.MessageEvent) { + return await this.get(r => r.cancel_community_channel_message_event(community_id, channel_id, event), `Error sending event ${event}`) } private async sendTo(raygun: wasm.RayGunBox, community_id: string, channel_id: string, message: string[], settings?: { attachments?: FileAttachment[]; replyTo?: string }): Promise { diff --git a/src/routes/wallet/+page.svelte b/src/routes/wallet/+page.svelte index d5b9e55a2..a05316296 100644 --- a/src/routes/wallet/+page.svelte +++ b/src/routes/wallet/+page.svelte @@ -54,7 +54,7 @@