chore: remove unused right sidebar component and clean up workspace member settings (#8477)

This commit is contained in:
Prateek Shourya 2025-12-31 00:08:40 +05:30 committed by GitHub
parent 6129e8e53b
commit 3d5e427894
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 6 additions and 39 deletions

View file

@ -1 +0,0 @@
export * from "./root";

View file

@ -1,10 +0,0 @@
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 <></>;
});