From 0b4b2562cdfc5699935a642db1fdf9e75342b751 Mon Sep 17 00:00:00 2001 From: Peter Piekarczyk Date: Tue, 28 Mar 2023 16:34:15 -0500 Subject: [PATCH] turn off message requests for now --- packages/app-mobile/src/components/Messages.tsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/packages/app-mobile/src/components/Messages.tsx b/packages/app-mobile/src/components/Messages.tsx index 583dc958d..caa3fdf33 100644 --- a/packages/app-mobile/src/components/Messages.tsx +++ b/packages/app-mobile/src/components/Messages.tsx @@ -314,9 +314,9 @@ export function MessageList({ if (requestCount > 0) { // @ts-ignore // Renders "Message Requests" at the top - s.unshift({ - id: -1, - }); + // s.unshift({ + // id: -1, + // }); } return s; @@ -324,9 +324,10 @@ export function MessageList({ const renderItem = useCallback( ({ item, index }) => { - if (requestCount > 0 && item.id === -1) { - return ; - } + // turn off message requests for now so we can ship a new build + // if (requestCount > 0 && item.id === -1) { + // return ; + // } return ( ); }, - [onPressRow, requestCount] + [onPressRow] ); return (