diff --git a/apps/app/components/exporter/single-export.tsx b/apps/app/components/exporter/single-export.tsx index 34eb1510a..c8ef2dc1a 100644 --- a/apps/app/components/exporter/single-export.tsx +++ b/apps/app/components/exporter/single-export.tsx @@ -1,6 +1,4 @@ import React from "react"; -// next imports -import Link from "next/link"; // ui import { PrimaryButton } from "components/ui"; // icons // helpers @@ -65,11 +63,11 @@ export const SingleExport: React.FC = ({ service, refreshing }) => { <> {service.status == "completed" && (
- + {isLoading ? "Downloading..." : "Download"} - +
)} diff --git a/apps/app/pages/[workspaceSlug]/me/profile/activity.tsx b/apps/app/pages/[workspaceSlug]/me/profile/activity.tsx index eba97e1ec..3a8e9f8da 100644 --- a/apps/app/pages/[workspaceSlug]/me/profile/activity.tsx +++ b/apps/app/pages/[workspaceSlug]/me/profile/activity.tsx @@ -27,7 +27,7 @@ const ProfileActivity = () => { const { data: userActivity } = useSWR( workspaceSlug ? USER_ACTIVITY : null, - workspaceSlug ? () => userService.getUserActivity(workspaceSlug.toString()) : null + workspaceSlug ? () => userService.getUserWorkspaceActivity(workspaceSlug.toString()) : null ); return (