Skip to content

Commit

Permalink
Merge branch 'dev' into fix-storage-on-mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
stavares843 authored Nov 27, 2024
2 parents 8bca11a + 7db21c6 commit 43468ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/chat/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,8 @@
async function sendPaymentMessage(message: MessageType, paymentType: string) {
let transfer = new Transfer()
let chat = get(Store.state.activeChat)
let rejectTranser = transfer.toRejectString(message.id)
let txt = rejectTranser.split("\n")
let rejectTransfer = transfer.toRejectString(message.id)
let txt = rejectTransfer.split("\n")
if (paymentType === "result") {
let result = await RaygunStoreInstance.send(chat.id, txt, [])
result.onSuccess(res => {
Expand Down

0 comments on commit 43468ec

Please sign in to comment.