fix: bool eval order

This commit is contained in:
Aryan Kothari
2024-08-01 15:54:12 -04:00
parent 2c4bc7a2b2
commit 06a64219bc
4 changed files with 10 additions and 10 deletions

View File

@@ -90,7 +90,7 @@
history: history
});
await chats.set(await getChatList(localStorage.token, 0, $pageSkip * $pageLimit || $pageLimit));
await chats.set(await getChatList(localStorage.token, 0, ($pageSkip * $pageLimit) || $pageLimit));
};
const confirmEditResponseMessage = async (messageId, content) => {