From 78a01491fdf47603811961bd80c5c4b0781130d8 Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Sun, 13 Feb 2022 11:27:40 -0800 Subject: [PATCH] Update ViewConvo.tsx --- .../components/MainTabsOrPages/ViewConvo.tsx | 29 +------------------ 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/packages/web/components/MainTabsOrPages/ViewConvo.tsx b/packages/web/components/MainTabsOrPages/ViewConvo.tsx index 8c9b9bc..f156933 100644 --- a/packages/web/components/MainTabsOrPages/ViewConvo.tsx +++ b/packages/web/components/MainTabsOrPages/ViewConvo.tsx @@ -63,35 +63,8 @@ import isValidHttpUrl from "../../helpers/urlHelper"; import { FaPlus } from "react-icons/fa"; import SharedItemsRow from "../Drawer/SharedItemsRow"; -const testDrawerItems: { - linkType: LinkType; - linkName: string; - relativeSentTime: string; -}[] = [ - { - linkType: LinkType.googleMeet, - linkName: "Gmeet - Meeting Link", - relativeSentTime: "5 seconds ago", - }, - { - linkType: LinkType.atlassian, - linkName: "Jira Ticket - Ecommerce Plugin", - relativeSentTime: "20 minutes ago", - }, - { - linkType: LinkType.github, - linkName: "React library for hotkeys", - relativeSentTime: "2 hours ago", - }, - { - linkType: LinkType.googleDrive, - linkName: "Engineering - Team Drive Folder", - relativeSentTime: "last week", - }, -]; - const AUDIO_CLIP_FETCH_LIMIT = 50; -const LINK_FETCH_LIMIT = 5; +const LINK_FETCH_LIMIT = 10; export default function ViewConvo(props: { conversationId: string }) { const { currUser } = useAuth();