Skip to content

Commit

Permalink
fixed error on project management list
Browse files Browse the repository at this point in the history
  • Loading branch information
norbertschuler committed Aug 6, 2023
1 parent 5e200fa commit 4babc6a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/components/Projects/ProjectList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { getAllProjects } from '../../repositories/projects';
const { protocol, cdnUrl, webAppUrl } = APIConfig;

interface ProjectListProps {
isSelectable?: boolean;
isSelectable: boolean;
onProjectPress?: any;
selectedProjectId?: string;
}
Expand Down
2 changes: 1 addition & 1 deletion app/components/Projects/SelectProject.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function SelectProject({}: SelectProjectProps) {
subHeadingText={i18next.t('label.select_project_desc')}
/>
<ProjectList
isSelectable
isSelectable={true}
onProjectPress={onProjectPress}
selectedProjectId={selectedProjectId}
/>
Expand Down
2 changes: 1 addition & 1 deletion app/screens/ManageProjectsFlow/ManageProjects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const ManageProjects = ({}: ManageProjectsProps) => {
<View style={styles.container}>
<Header headingText={i18next.t('label.manage_projects')} />

<ProjectList isSelectable={true} />
<ProjectList isSelectable={false} />
</View>
</SafeAreaView>
);
Expand Down

0 comments on commit 4babc6a

Please sign in to comment.