From d22e4b8212d26d34e1c2a6b82ce4f304518b31eb Mon Sep 17 00:00:00 2001 From: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Date: Tue, 1 Aug 2023 18:38:33 +0530 Subject: [PATCH] fix: profile activity workspace slug (#1752) --- apps/app/components/core/feeds.tsx | 443 +++++++++++++++-------------- 1 file changed, 227 insertions(+), 216 deletions(-) diff --git a/apps/app/components/core/feeds.tsx b/apps/app/components/core/feeds.tsx index 6b6576b36..2924ec456 100644 --- a/apps/app/components/core/feeds.tsx +++ b/apps/app/components/core/feeds.tsx @@ -1,5 +1,7 @@ import React from "react"; +import { useRouter } from "next/router"; + import Link from "next/link"; // icons @@ -99,233 +101,242 @@ const activityDetails: { }, }; -export const Feeds: React.FC = ({ activities }) => ( -
- +
+ ); +};