Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiebe-Vercoutter committed May 21, 2022
1 parent 61a8e21 commit f4db862
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export default function SkillInput({
setAvailableSkills((await getSkills())?.skills || []);
}
callSkills();

}, []);

return (
Expand Down
7 changes: 2 additions & 5 deletions frontend/src/data/interfaces/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ export interface AddRoleSuggestion {
export interface AddStudentRole {
/** The Id of the project role where to add the student */
projectRoleId: string;

/** The Id of the student to add */
studentId: string;

/** Can be used to switch the role of a student */
switchProjectRoleId: string | undefined;
}
Expand Down Expand Up @@ -104,7 +104,6 @@ export interface Project {

/** The roles of this project */
projectRoles: ProjectRole[];

}

/**
Expand Down Expand Up @@ -156,5 +155,3 @@ export interface CreateProjectRole {
/** Number of positions of this skill in a project */
slots: number;
}


Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ export default function ProjectDetailPage() {
});
setStudentAmount(countStudents);
setAssignedAmount(countAssigned);

} else navigate("/404-not-found");
}
}
Expand Down

0 comments on commit f4db862

Please sign in to comment.