From 5a39981e00bc62a07b57559eb70a61e0bc447f2b Mon Sep 17 00:00:00 2001 From: AbdulahDzankic Date: Tue, 26 Nov 2024 20:27:12 +0100 Subject: [PATCH] Input fix --- packages/rmw-shell/src/containers/Chat/index.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/rmw-shell/src/containers/Chat/index.jsx b/packages/rmw-shell/src/containers/Chat/index.jsx index 41c79d47a..1341af184 100644 --- a/packages/rmw-shell/src/containers/Chat/index.jsx +++ b/packages/rmw-shell/src/containers/Chat/index.jsx @@ -42,7 +42,7 @@ export function ChatContainer({ path }) { let messagesRef = query( ref(getDatabase(), path), orderByKey(), - limitToLast(size), + limitToLast(size) ); watchList(messagesRef, alias); @@ -174,7 +174,7 @@ export function ChatContainer({ path }) {
- +
);