diff --git a/services/web/frontend/js/features/project-list/util/sort-projects.ts b/services/web/frontend/js/features/project-list/util/sort-projects.ts index cf97504a3b..169397ad49 100644 --- a/services/web/frontend/js/features/project-list/util/sort-projects.ts +++ b/services/web/frontend/js/features/project-list/util/sort-projects.ts @@ -1,7 +1,7 @@ import { Project, Sort } from '../../../../../types/project/dashboard/api' import { SortingOrder } from '../../../../../types/sorting-order' import { getOwnerName } from './project' -import { Compare } from '../../../../../types/array/sort' +import { Compare } from '../../../../../types/helpers/array/sort' const order = (order: SortingOrder, projects: Project[]) => { return order === 'asc' ? [...projects] : projects.reverse() diff --git a/services/web/frontend/js/features/source-editor/components/review-panel/container.tsx b/services/web/frontend/js/features/source-editor/components/review-panel/container.tsx index 62a1db89f0..bba2364bc0 100644 --- a/services/web/frontend/js/features/source-editor/components/review-panel/container.tsx +++ b/services/web/frontend/js/features/source-editor/components/review-panel/container.tsx @@ -18,10 +18,12 @@ function Container({ children, classNames, ...rest }: ContainerProps) { {...rest} data-testid="review-panel" > +