From 57f4499c262e563817893f5b72bc804d5a561bcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oriol=20G=C3=B3mez?= Date: Fri, 21 Mar 2025 13:29:43 +0100 Subject: [PATCH] fix: decrease timeout --- frontend/src/views/main.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/views/main.ts b/frontend/src/views/main.ts index e7734ad..50bae1b 100644 --- a/frontend/src/views/main.ts +++ b/frontend/src/views/main.ts @@ -623,12 +623,12 @@ export class MainView extends View { if (messages && messages.length > 0) { const msg = messages[messages.length - index]; if (msg) { - showToast(`${msg.content}; ${this.convertIsoTimeStringToFriendly(msg.createdAt)}`); + showToast(`${msg.content}; ${this.convertIsoTimeStringToFriendly(msg.createdAt)}`, 200); } else { - showToast('No message is available in this position'); + showToast('No message is available in this position', 200); } } else { - showToast('There are no messages in this channel right now') + showToast('There are no messages in this channel right now', 200) } }