From 383e5b4e3716209e8c06e5a1c573497b7d02945f Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Sun, 6 Feb 2022 16:40:45 -0800 Subject: [PATCH] stale state text for convo --- .../components/MainTabsOrPages/ViewConvo.tsx | 33 ++++++++++++------- 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/packages/web/components/MainTabsOrPages/ViewConvo.tsx b/packages/web/components/MainTabsOrPages/ViewConvo.tsx index 260626c..56ab2a0 100644 --- a/packages/web/components/MainTabsOrPages/ViewConvo.tsx +++ b/packages/web/components/MainTabsOrPages/ViewConvo.tsx @@ -275,22 +275,31 @@ export default function ViewConvo(props: { conversationId: string }) { )} {/* have one row, but just translate it along y downward to put it in it's own place */} + - {audioClips.reverse().map((audClip, index) => { - const restAudioClips = audioClips.slice(index); - return ( - - ); - })} + {audioClips?.length > 0 ? ( + audioClips.reverse().map((audClip, index) => { + const restAudioClips = audioClips.slice(index); + return ( + + ); + }) + ) : ( + + Please get this conversation started

by pressing and + holding{" "} + R. +
+ )}