This reverts commit c97e418515.
This commit is contained in:
parent
d61b157929
commit
6129e8e53b
15 changed files with 51 additions and 85 deletions
|
|
@ -1,10 +0,0 @@
|
|||
import { observer } from "mobx-react";
|
||||
|
||||
type TProjectMembersActivityButtonProps = { workspaceSlug: string; projectId: string };
|
||||
|
||||
export const ProjectMembersActivityButton = observer(function ProjectMembersActivityButton(
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
props: TProjectMembersActivityButtonProps
|
||||
) {
|
||||
return <></>;
|
||||
});
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
import { observer } from "mobx-react";
|
||||
|
||||
type TSettingsRightSidebarProps = { workspaceSlug: string; projectId?: string };
|
||||
|
||||
export const SettingsRightSidebar = observer(function SettingsRightSidebar(
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
props: TSettingsRightSidebarProps
|
||||
) {
|
||||
return <></>;
|
||||
});
|
||||
1
apps/web/ce/components/workspace/right-sidebar/index.ts
Normal file
1
apps/web/ce/components/workspace/right-sidebar/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export * from "./root";
|
||||
10
apps/web/ce/components/workspace/right-sidebar/root.tsx
Normal file
10
apps/web/ce/components/workspace/right-sidebar/root.tsx
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { observer } from "mobx-react";
|
||||
|
||||
type TWorkspaceSettingsRightSidebarProps = { workspaceSlug: string };
|
||||
|
||||
export const WorkspaceSettingsRightSidebar = observer(function WorkspaceSettingsRightSidebar(
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
props: TWorkspaceSettingsRightSidebarProps
|
||||
) {
|
||||
return <></>;
|
||||
});
|
||||
|
|
@ -41,13 +41,4 @@ export class ProjectMemberStore extends BaseProjectMemberStore implements IProje
|
|||
* @param userId - The ID of the user to remove from the project
|
||||
*/
|
||||
processMemberRemoval = (projectId: string, userId: string) => this.handleMemberRemoval(projectId, userId);
|
||||
|
||||
/**
|
||||
* @description Mutate project members activity
|
||||
* @param workspaceSlug
|
||||
* @param projectId
|
||||
*/
|
||||
mutateProjectMembersActivity = async (_workspaceSlug: string, _projectId: string) => {
|
||||
// No-op in default/CE version
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue