* fix: project error message and status code * fix: incorrect member role check * fix: project error message and status code * fix: improve project permission checks and error handling in ProjectViewSet * feat: enhance project settings layout with better loading strategy and fix all flicker * fix: prevent rendering during project loading in ProjectAuthWrapper * refactor: adjust layout structure in ProjectDetailSettingsLayout and enhance access restriction logic in ProjectAccessRestriction * refactor: replace ProjectAccessRestriction component with updated version and enhance error handling - Deleted the old ProjectAccessRestriction component. - Introduced a new ProjectAccessRestriction component with improved error handling and user prompts for joining projects. - Updated translations for new error states in multiple languages. * fix: enhance error handling in IssueDetailsPage and remove JoinProject component --------- Co-authored-by: Dheeraj Kumar Ketireddy <dheeru0198@gmail.com> Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
20 lines
585 B
TypeScript
20 lines
585 B
TypeScript
import { observer } from "mobx-react";
|
|
// layouts
|
|
import { ProjectAuthWrapper as CoreProjectAuthWrapper } from "@/layouts/auth-layout/project-wrapper";
|
|
|
|
export type IProjectAuthWrapper = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
export const ProjectAuthWrapper = observer(function ProjectAuthWrapper(props: IProjectAuthWrapper) {
|
|
// props
|
|
const { workspaceSlug, projectId, children } = props;
|
|
|
|
return (
|
|
<CoreProjectAuthWrapper workspaceSlug={workspaceSlug} projectId={projectId}>
|
|
{children}
|
|
</CoreProjectAuthWrapper>
|
|
);
|
|
});
|