From 448da2e5b922c7c68c0436ecbf242953529c4bde Mon Sep 17 00:00:00 2001 From: Dominik Stumpf Date: Wed, 11 Sep 2024 20:03:35 +0200 Subject: [PATCH] chore: reapply userid filter to RecentActivity --- .../profile/_components/RecentActivity/RecentActivity.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/(marketing)/profile/_components/RecentActivity/RecentActivity.tsx b/src/app/(marketing)/profile/_components/RecentActivity/RecentActivity.tsx index f842bcc23e..cc3ba555b4 100644 --- a/src/app/(marketing)/profile/_components/RecentActivity/RecentActivity.tsx +++ b/src/app/(marketing)/profile/_components/RecentActivity/RecentActivity.tsx @@ -55,6 +55,7 @@ export const RecentActivity = () => { profile.data?.userId && new URLSearchParams([ ["username", profile.data.username], + ["userId", profile.data.userId.toString()], ["limit", "20"], ["offset", "0"], ...FILTER_ACTIONS[activityFilter].map((action) => ["action", action]),