Skip to content

Commit

Permalink
chore(typos): fix typos (#962)
Browse files Browse the repository at this point in the history
  • Loading branch information
stavares843 authored Dec 20, 2024
1 parent 3085a01 commit ae2109c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/lib/wasm/CommunitiesStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<SendMessageResult> {
Expand Down
8 changes: 4 additions & 4 deletions src/routes/wallet/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

<div id="recent-transactions">
<Label text={$_("payments.recentTransaction")} />
<div class="transacitons">
<div class="transactions">
<TransactionContainer>
{#each recent_transactions as transaction}
<Transaction transaction={transaction} />
Expand All @@ -70,7 +70,7 @@
<div id="transactions">
<div id="payments-in">
<Label text={$_("payments.coinIn")} />
<div class="transacitons">
<div class="transactions">
<TransactionContainer>
{#each transactions_in as transaction}
<Transaction transaction={transaction} />
Expand All @@ -85,7 +85,7 @@
</div>
<div id="payments-out">
<Label text={$_("payments.coinOut")} />
<div class="transacitons">
<div class="transactions">
<TransactionContainer>
{#each transactions_out as transaction}
<Transaction transaction={transaction} />
Expand Down Expand Up @@ -123,7 +123,7 @@
overflow-y: scroll;
min-width: 0;
.transacitons {
.transactions {
min-height: 0;
overflow-y: scroll;
}
Expand Down

0 comments on commit ae2109c

Please sign in to comment.