diff --git a/services/web/frontend/js/features/project-list/components/project-list-root.tsx b/services/web/frontend/js/features/project-list/components/project-list-root.tsx index 4a7af12a34..e907e07269 100644 --- a/services/web/frontend/js/features/project-list/components/project-list-root.tsx +++ b/services/web/frontend/js/features/project-list/components/project-list-root.tsx @@ -14,6 +14,7 @@ import WelcomeMessage from './welcome-message' import LoadingBranded from '../../../shared/components/loading-branded' import UserNotifications from './notifications/user-notifications' import SearchForm from './search-form' +import ProjectTools from './table/project-tools/project-tools' function ProjectListRoot() { const { isReady } = useWaitForI18n() @@ -26,8 +27,14 @@ function ProjectListRoot() { } function ProjectListPageContent() { - const { totalProjectsCount, error, isLoading, loadProgress, setSearchText } = - useProjectListContext() + const { + totalProjectsCount, + error, + isLoading, + loadProgress, + setSearchText, + selectedProjects, + } = useProjectListContext() return isLoading ? (
- {t('archiving_projects_wont_affect_collaborators')}{' '} - - {t('find_out_more_nt')} - -
- {t('trashing_projects_wont_affect_collaborators')}{' '} - - {t('find_out_more_nt')} - -
{t('about_to_archive_projects')}
+ {t('archiving_projects_wont_affect_collaborators')}{' '} + + {t('find_out_more_nt')} + +
{t('about_to_leave_projects')}
{t('about_to_trash_projects')}
+ {t('trashing_projects_wont_affect_collaborators')}{' '} + + {t('find_out_more_nt')} + +
{t('about_to_delete_projects')}
top text