fix: dashboard workspace activity mutation (#742)

This commit is contained in:
Aaryan Khandelwal 2023-04-08 15:10:19 +05:30 committed by GitHub
parent 9b1ae6bcd4
commit 98e6d3de22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,6 +32,8 @@ const WorkspacePage: NextPage = () => {
);
useEffect(() => {
if (!workspaceSlug) return;
mutate(USER_WORKSPACE_DASHBOARD(workspaceSlug as string));
}, [month, workspaceSlug]);