From 5c0932aef5c3ccfa24904a07e88391a2809fd5f7 Mon Sep 17 00:00:00 2001 From: Riku Rauhala Date: Tue, 20 Aug 2024 14:03:17 +0300 Subject: [PATCH] [Frontend] Remove unnecessary folder InfoBox is the only component inside Info --- services/frontend/src/components/CloseToGraduation/index.jsx | 2 +- .../CoursePopulation/CoursePopulationCreditGainTable/index.jsx | 2 +- services/frontend/src/components/CoursePopulation/index.jsx | 2 +- .../ResultTabs/panes/settings/ChartSettings.jsx | 2 +- .../ResultTabs/panes/settings/TableSettings.jsx | 2 +- services/frontend/src/components/CustomPopulation/index.jsx | 2 +- .../frontend/src/components/EvaluationOverview/FacultyView.jsx | 2 +- .../src/components/EvaluationOverview/ProgrammeView.jsx | 2 +- .../src/components/EvaluationOverview/UniversityView.jsx | 2 +- .../src/components/FacultyStatistics/BasicOverview/index.jsx | 2 +- .../FacultyStatistics/FacultyProgrammeOverview/index.jsx | 2 +- .../src/components/FacultyStatistics/TimesAndPaths/index.jsx | 2 +- .../src/components/{Info => }/InfoBox/InfoBoxButton.jsx | 0 services/frontend/src/components/{Info => }/InfoBox/index.jsx | 0 services/frontend/src/components/{Info => }/InfoBox/infoBox.css | 0 .../src/components/PopulationDetails/CreditGainStats/index.jsx | 2 +- .../components/PopulationDetails/PopulationCourses/index.jsx | 2 +- services/frontend/src/components/PopulationDetails/index.jsx | 2 +- .../src/components/PopulationSearch/PopulationSearchHistory.jsx | 2 +- services/frontend/src/components/PopulationSearch/index.jsx | 2 +- services/frontend/src/components/PopulationStudents/index.jsx | 2 +- .../components/StudyGuidanceGroups/SingleStudyGuidanceGroup.jsx | 2 +- .../src/components/StudyProgramme/BasicOverview/index.jsx | 2 +- .../StudyProgramme/ProgrammeCourses/OverallStatsTable.jsx | 2 +- .../src/components/StudyProgramme/StudytrackOverview/index.jsx | 2 +- services/frontend/src/components/Users/AccessRights.jsx | 2 +- 26 files changed, 23 insertions(+), 23 deletions(-) rename services/frontend/src/components/{Info => }/InfoBox/InfoBoxButton.jsx (100%) rename services/frontend/src/components/{Info => }/InfoBox/index.jsx (100%) rename services/frontend/src/components/{Info => }/InfoBox/infoBox.css (100%) diff --git a/services/frontend/src/components/CloseToGraduation/index.jsx b/services/frontend/src/components/CloseToGraduation/index.jsx index 71aaf7f423..0569dc578e 100644 --- a/services/frontend/src/components/CloseToGraduation/index.jsx +++ b/services/frontend/src/components/CloseToGraduation/index.jsx @@ -6,7 +6,7 @@ import { createLocaleComparator, getCurrentSemester, getEnrollmentTypeTextForExc import { useTitle } from '@/common/hooks' import { closeToGraduationToolTips } from '@/common/InfoToolTips' import { StudentInfoItem } from '@/components/common/StudentInfoItem' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { useLanguage } from '@/components/LanguagePicker/useLanguage' import { getSemestersPresentFunctions } from '@/components/PopulationStudents/StudentTable/GeneralTab/columnHelpers/semestersPresent' import { PaginatedSortableTable } from '@/components/SortableTable/PaginatedSortableTable' diff --git a/services/frontend/src/components/CoursePopulation/CoursePopulationCreditGainTable/index.jsx b/services/frontend/src/components/CoursePopulation/CoursePopulationCreditGainTable/index.jsx index c384829315..738286e106 100644 --- a/services/frontend/src/components/CoursePopulation/CoursePopulationCreditGainTable/index.jsx +++ b/services/frontend/src/components/CoursePopulation/CoursePopulationCreditGainTable/index.jsx @@ -5,7 +5,7 @@ import { Tab, Table } from 'semantic-ui-react' import { getNewestProgramme } from '@/common' import { populationStatisticsToolTips } from '@/common/InfoToolTips' import { findCorrectProgramme } from '@/components/CustomPopulation/CustomPopulationProgrammeDist' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { useLanguage } from '@/components/LanguagePicker/useLanguage' import { useGetFacultiesQuery } from '@/redux/facultyStats' import { useGetSemestersQuery } from '@/redux/semesters' diff --git a/services/frontend/src/components/CoursePopulation/index.jsx b/services/frontend/src/components/CoursePopulation/index.jsx index 82b4291604..051d189fb2 100644 --- a/services/frontend/src/components/CoursePopulation/index.jsx +++ b/services/frontend/src/components/CoursePopulation/index.jsx @@ -21,7 +21,7 @@ import { studentNumberFilter, studyTrackFilter, } from '@/components/FilterView/filters' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { useLanguage } from '@/components/LanguagePicker/useLanguage' import { PopulationCourseStatsFlat } from '@/components/PopulationCourseStats/PopulationCourseStatsFlat' import { PopulationStudentsContainer as PopulationStudents } from '@/components/PopulationStudents' diff --git a/services/frontend/src/components/CourseStatistics/ResultTabs/panes/settings/ChartSettings.jsx b/services/frontend/src/components/CourseStatistics/ResultTabs/panes/settings/ChartSettings.jsx index ad8d0d6f59..ae93472c56 100644 --- a/services/frontend/src/components/CourseStatistics/ResultTabs/panes/settings/ChartSettings.jsx +++ b/services/frontend/src/components/CourseStatistics/ResultTabs/panes/settings/ChartSettings.jsx @@ -1,7 +1,7 @@ import { Radio, Segment, SegmentGroup } from 'semantic-ui-react' import { courseStatisticsToolTips } from '@/common/InfoToolTips' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { Setting } from './common/Setting' export const ChartSettings = ({ isRelative, setIsRelative, tab, viewMode }) => { diff --git a/services/frontend/src/components/CourseStatistics/ResultTabs/panes/settings/TableSettings.jsx b/services/frontend/src/components/CourseStatistics/ResultTabs/panes/settings/TableSettings.jsx index e1bd754574..c9ca2f37a0 100644 --- a/services/frontend/src/components/CourseStatistics/ResultTabs/panes/settings/TableSettings.jsx +++ b/services/frontend/src/components/CourseStatistics/ResultTabs/panes/settings/TableSettings.jsx @@ -1,7 +1,7 @@ import { Radio, Segment, SegmentGroup } from 'semantic-ui-react' import { courseStatisticsToolTips } from '@/common/InfoToolTips' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { DirectionToggle } from './common/DirectionToggle' import { ProviderOrganization } from './common/ProviderOrganization' import { Setting } from './common/Setting' diff --git a/services/frontend/src/components/CustomPopulation/index.jsx b/services/frontend/src/components/CustomPopulation/index.jsx index 60cdf9ba75..9fa637e456 100644 --- a/services/frontend/src/components/CustomPopulation/index.jsx +++ b/services/frontend/src/components/CustomPopulation/index.jsx @@ -19,7 +19,7 @@ import { tagsFilter, transferredToProgrammeFilter, } from '@/components/FilterView/filters' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { useLanguage } from '@/components/LanguagePicker/useLanguage' import { PopulationCourseStatsFlat } from '@/components/PopulationCourseStats/PopulationCourseStatsFlat' import { PopulationStudentsContainer as PopulationStudents } from '@/components/PopulationStudents' diff --git a/services/frontend/src/components/EvaluationOverview/FacultyView.jsx b/services/frontend/src/components/EvaluationOverview/FacultyView.jsx index 2bd3ceb04d..4e86f530f1 100644 --- a/services/frontend/src/components/EvaluationOverview/FacultyView.jsx +++ b/services/frontend/src/components/EvaluationOverview/FacultyView.jsx @@ -2,7 +2,7 @@ import { useState } from 'react' import { Divider, Header, Loader, Message } from 'semantic-ui-react' import { facultyToolTips } from '@/common/InfoToolTips' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { useLanguage } from '@/components/LanguagePicker/useLanguage' import { Toggle } from '@/components/StudyProgramme/Toggle' import { diff --git a/services/frontend/src/components/EvaluationOverview/ProgrammeView.jsx b/services/frontend/src/components/EvaluationOverview/ProgrammeView.jsx index 8dbaf155d8..de67a575bb 100644 --- a/services/frontend/src/components/EvaluationOverview/ProgrammeView.jsx +++ b/services/frontend/src/components/EvaluationOverview/ProgrammeView.jsx @@ -4,7 +4,7 @@ import { Divider, Header, Loader, Message, Segment } from 'semantic-ui-react' import { getTargetCreditsForProgramme } from '@/common' import { studyProgrammeToolTips } from '@/common/InfoToolTips' import { calculateStats } from '@/components/FacultyStatistics/FacultyProgrammeOverview' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { useLanguage } from '@/components/LanguagePicker/useLanguage' import { DataTable } from '@/components/StudyProgramme/BasicOverview/DataTable' import { StackedBarChart } from '@/components/StudyProgramme/BasicOverview/StackedBarChart' diff --git a/services/frontend/src/components/EvaluationOverview/UniversityView.jsx b/services/frontend/src/components/EvaluationOverview/UniversityView.jsx index 0f74aa63d2..4a4b6184bb 100644 --- a/services/frontend/src/components/EvaluationOverview/UniversityView.jsx +++ b/services/frontend/src/components/EvaluationOverview/UniversityView.jsx @@ -6,7 +6,7 @@ import { Divider, Header, Loader, Message, Segment } from 'semantic-ui-react' import { useTitle } from '@/common/hooks' import { facultyToolTips } from '@/common/InfoToolTips' import '@/components/FacultyStatistics/faculty.css' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { useLanguage } from '@/components/LanguagePicker/useLanguage' import { Toggle } from '@/components/StudyProgramme/Toggle' import { useGetAuthorizedUserQuery } from '@/redux/auth' diff --git a/services/frontend/src/components/FacultyStatistics/BasicOverview/index.jsx b/services/frontend/src/components/FacultyStatistics/BasicOverview/index.jsx index 100674731f..c2835c2a05 100644 --- a/services/frontend/src/components/FacultyStatistics/BasicOverview/index.jsx +++ b/services/frontend/src/components/FacultyStatistics/BasicOverview/index.jsx @@ -5,7 +5,7 @@ import { facultyToolTips } from '@/common/InfoToolTips' import { makeGraphData, makeTableStats } from '@/components/common/CreditsProduced' import { sortProgrammeKeys } from '@/components/FacultyStatistics/facultyHelpers' import { InteractiveDataTable } from '@/components/FacultyStatistics/InteractiveDataView' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { LineGraph } from '@/components/StudyProgramme/BasicOverview/LineGraph' import { StackedBarChart } from '@/components/StudyProgramme/BasicOverview/StackedBarChart' import { Toggle } from '@/components/StudyProgramme/Toggle' diff --git a/services/frontend/src/components/FacultyStatistics/FacultyProgrammeOverview/index.jsx b/services/frontend/src/components/FacultyStatistics/FacultyProgrammeOverview/index.jsx index 02d1a76b76..0529d05088 100644 --- a/services/frontend/src/components/FacultyStatistics/FacultyProgrammeOverview/index.jsx +++ b/services/frontend/src/components/FacultyStatistics/FacultyProgrammeOverview/index.jsx @@ -5,7 +5,7 @@ import { facultyToolTips } from '@/common/InfoToolTips' import { sortProgrammeKeys } from '@/components/FacultyStatistics/facultyHelpers' import { downloadProgressTable, downloadStudentTable } from '@/components/FacultyStatistics/xlsxFileDownloadHelper' import '@/components/FacultyStatistics/faculty.css' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { useLanguage } from '@/components/LanguagePicker/useLanguage' import { Toggle } from '@/components/StudyProgramme/Toggle' import { useGetFacultyProgressStatsQuery, useGetFacultyStudentStatsQuery } from '@/redux/facultyStats' diff --git a/services/frontend/src/components/FacultyStatistics/TimesAndPaths/index.jsx b/services/frontend/src/components/FacultyStatistics/TimesAndPaths/index.jsx index 590fb6577e..236de6d061 100644 --- a/services/frontend/src/components/FacultyStatistics/TimesAndPaths/index.jsx +++ b/services/frontend/src/components/FacultyStatistics/TimesAndPaths/index.jsx @@ -4,7 +4,7 @@ import { utils, writeFile } from 'xlsx' import { facultyToolTips } from '@/common/InfoToolTips' import '@/components/FacultyStatistics/faculty.css' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { useLanguage } from '@/components/LanguagePicker/useLanguage' import { Toggle } from '@/components/StudyProgramme/Toggle' import { useGetFacultyGraduationTimesQuery } from '@/redux/facultyStats' diff --git a/services/frontend/src/components/Info/InfoBox/InfoBoxButton.jsx b/services/frontend/src/components/InfoBox/InfoBoxButton.jsx similarity index 100% rename from services/frontend/src/components/Info/InfoBox/InfoBoxButton.jsx rename to services/frontend/src/components/InfoBox/InfoBoxButton.jsx diff --git a/services/frontend/src/components/Info/InfoBox/index.jsx b/services/frontend/src/components/InfoBox/index.jsx similarity index 100% rename from services/frontend/src/components/Info/InfoBox/index.jsx rename to services/frontend/src/components/InfoBox/index.jsx diff --git a/services/frontend/src/components/Info/InfoBox/infoBox.css b/services/frontend/src/components/InfoBox/infoBox.css similarity index 100% rename from services/frontend/src/components/Info/InfoBox/infoBox.css rename to services/frontend/src/components/InfoBox/infoBox.css diff --git a/services/frontend/src/components/PopulationDetails/CreditGainStats/index.jsx b/services/frontend/src/components/PopulationDetails/CreditGainStats/index.jsx index d23925536f..e180bec8f5 100644 --- a/services/frontend/src/components/PopulationDetails/CreditGainStats/index.jsx +++ b/services/frontend/src/components/PopulationDetails/CreditGainStats/index.jsx @@ -4,7 +4,7 @@ import { Tab } from 'semantic-ui-react' import { getMonthsForDegree } from '@/common' import { useTabChangeAnalytics } from '@/common/hooks' import { populationStatisticsToolTips } from '@/common/InfoToolTips' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { CreditDistributionDevelopment } from './CreditDistributionDevelopment' import { CreditsGainedTab } from './CreditsGainedTab' import { StatisticsTab } from './StatisticsTab' diff --git a/services/frontend/src/components/PopulationDetails/PopulationCourses/index.jsx b/services/frontend/src/components/PopulationDetails/PopulationCourses/index.jsx index 45844e5df1..dcc6874b02 100644 --- a/services/frontend/src/components/PopulationDetails/PopulationCourses/index.jsx +++ b/services/frontend/src/components/PopulationDetails/PopulationCourses/index.jsx @@ -3,7 +3,7 @@ import { useSelector, useDispatch } from 'react-redux' import { Segment } from 'semantic-ui-react' import { populationStatisticsToolTips } from '@/common/InfoToolTips' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { ConnectedPopulationCourseStats as PopulationCourseStats } from '@/components/PopulationCourseStats' import { PopulationCourseStatsFlat } from '@/components/PopulationCourseStats/PopulationCourseStatsFlat' import { SegmentDimmer } from '@/components/SegmentDimmer' diff --git a/services/frontend/src/components/PopulationDetails/index.jsx b/services/frontend/src/components/PopulationDetails/index.jsx index 8c21f9169e..114b06f812 100644 --- a/services/frontend/src/components/PopulationDetails/index.jsx +++ b/services/frontend/src/components/PopulationDetails/index.jsx @@ -6,7 +6,7 @@ import { PanelView } from '@/components/common/PanelView' import { CreditAccumulationGraphHighCharts } from '@/components/CreditAccumulationGraphHighCharts' import { creditDateFilter, hopsFilter as studyPlanFilter } from '@/components/FilterView/filters' import { useFilters } from '@/components/FilterView/useFilters' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { PopulationStudentsContainer as PopulationStudents } from '@/components/PopulationStudents' import { useGetAuthorizedUserQuery } from '@/redux/auth' import { useGetProgressCriteriaQuery } from '@/redux/programmeProgressCriteria' diff --git a/services/frontend/src/components/PopulationSearch/PopulationSearchHistory.jsx b/services/frontend/src/components/PopulationSearch/PopulationSearchHistory.jsx index a1c19bb437..024323f406 100644 --- a/services/frontend/src/components/PopulationSearch/PopulationSearchHistory.jsx +++ b/services/frontend/src/components/PopulationSearch/PopulationSearchHistory.jsx @@ -7,7 +7,7 @@ import { useHistory } from 'react-router-dom' import { Button, Form } from 'semantic-ui-react' import { populationStatisticsToolTips } from '@/common/InfoToolTips' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { PopulationQueryCard } from '@/components/PopulationQueryCard' import { FilterActiveNote } from './FilterActiveNote' import './populationSearch.css' diff --git a/services/frontend/src/components/PopulationSearch/index.jsx b/services/frontend/src/components/PopulationSearch/index.jsx index 1f92e3208c..708206e7ed 100644 --- a/services/frontend/src/components/PopulationSearch/index.jsx +++ b/services/frontend/src/components/PopulationSearch/index.jsx @@ -6,7 +6,7 @@ import { useProgress } from '@/common/hooks' import { populationStatisticsToolTips } from '@/common/InfoToolTips' import { hopsFilter } from '@/components/FilterView/filters' import { useFilters } from '@/components/FilterView/useFilters' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { ProgressBar } from '@/components/ProgressBar' import { ConnectedPopulationSearchForm as PopulationSearchForm } from './PopulationSearchForm' import { ConnectedPopulationSearchHistory as PopulationSearchHistory } from './PopulationSearchHistory' diff --git a/services/frontend/src/components/PopulationStudents/index.jsx b/services/frontend/src/components/PopulationStudents/index.jsx index dafc9d44ae..95da13a035 100644 --- a/services/frontend/src/components/PopulationStudents/index.jsx +++ b/services/frontend/src/components/PopulationStudents/index.jsx @@ -5,7 +5,7 @@ import { Tab } from 'semantic-ui-react' import { useTabChangeAnalytics, useToggle } from '@/common/hooks' import { coursePopulationToolTips, populationStatisticsToolTips } from '@/common/InfoToolTips' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { StudentNameVisibilityToggle } from '@/components/StudentNameVisibilityToggle' import { useGetAuthorizedUserQuery } from '@/redux/auth' import { useGetTagsByStudyTrackQuery } from '@/redux/tags' diff --git a/services/frontend/src/components/StudyGuidanceGroups/SingleStudyGuidanceGroup.jsx b/services/frontend/src/components/StudyGuidanceGroups/SingleStudyGuidanceGroup.jsx index 953e92b6e3..4cf4fb0b2d 100644 --- a/services/frontend/src/components/StudyGuidanceGroups/SingleStudyGuidanceGroup.jsx +++ b/services/frontend/src/components/StudyGuidanceGroups/SingleStudyGuidanceGroup.jsx @@ -12,7 +12,7 @@ import { FilterView } from '@/components/FilterView' import * as filters from '@/components/FilterView/filters' import { creditDateFilter, hopsFilter as studyPlanFilter } from '@/components/FilterView/filters' import { useFilters } from '@/components/FilterView/useFilters' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { useLanguage } from '@/components/LanguagePicker/useLanguage' import { AgeStats } from '@/components/PopulationDetails/AgeStats' import { CreditGainStats } from '@/components/PopulationDetails/CreditGainStats' diff --git a/services/frontend/src/components/StudyProgramme/BasicOverview/index.jsx b/services/frontend/src/components/StudyProgramme/BasicOverview/index.jsx index 882efcce7a..eb10c231ac 100644 --- a/services/frontend/src/components/StudyProgramme/BasicOverview/index.jsx +++ b/services/frontend/src/components/StudyProgramme/BasicOverview/index.jsx @@ -4,7 +4,7 @@ import { Divider, Loader, Message } from 'semantic-ui-react' import { getGraduationGraphTitle } from '@/common' import { studyProgrammeToolTips } from '@/common/InfoToolTips' import { CreditsProduced } from '@/components/common/CreditsProduced' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { useLanguage } from '@/components/LanguagePicker/useLanguage' import { BreakdownBarChart } from '@/components/StudyProgramme/BreakdownBarChart' import { MedianTimeBarChart } from '@/components/StudyProgramme/MedianTimeBarChart' diff --git a/services/frontend/src/components/StudyProgramme/ProgrammeCourses/OverallStatsTable.jsx b/services/frontend/src/components/StudyProgramme/ProgrammeCourses/OverallStatsTable.jsx index f3b750ccd4..8b3a16cab3 100644 --- a/services/frontend/src/components/StudyProgramme/ProgrammeCourses/OverallStatsTable.jsx +++ b/services/frontend/src/components/StudyProgramme/ProgrammeCourses/OverallStatsTable.jsx @@ -4,7 +4,7 @@ import { Link } from 'react-router-dom' import { Header, Item, Icon, Loader, Segment } from 'semantic-ui-react' import { studyProgrammeToolTips } from '@/common/InfoToolTips' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { useLanguage } from '@/components/LanguagePicker/useLanguage' import { SortableTable } from '@/components/SortableTable' import { Toggle } from '@/components/StudyProgramme/Toggle' diff --git a/services/frontend/src/components/StudyProgramme/StudytrackOverview/index.jsx b/services/frontend/src/components/StudyProgramme/StudytrackOverview/index.jsx index 3a7244bdef..3ff816184c 100644 --- a/services/frontend/src/components/StudyProgramme/StudytrackOverview/index.jsx +++ b/services/frontend/src/components/StudyProgramme/StudytrackOverview/index.jsx @@ -4,7 +4,7 @@ import { Divider, Loader, Message } from 'semantic-ui-react' import { getGraduationGraphTitle, getTargetCreditsForProgramme } from '@/common' import { studyProgrammeToolTips } from '@/common/InfoToolTips' import { calculateStats } from '@/components/FacultyStatistics/FacultyProgrammeOverview' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { BreakdownBarChart } from '@/components/StudyProgramme/BreakdownBarChart' import { MedianTimeBarChart } from '@/components/StudyProgramme/MedianTimeBarChart' import { Toggle } from '@/components/StudyProgramme/Toggle' diff --git a/services/frontend/src/components/Users/AccessRights.jsx b/services/frontend/src/components/Users/AccessRights.jsx index e740653f75..44c0d0e9e2 100644 --- a/services/frontend/src/components/Users/AccessRights.jsx +++ b/services/frontend/src/components/Users/AccessRights.jsx @@ -8,7 +8,7 @@ import { } from '@/common' import { userToolTips } from '@/common/InfoToolTips' import { FilterOldProgrammesToggle } from '@/components/common/FilterOldProgrammesToggle' -import { InfoBox } from '@/components/Info/InfoBox' +import { InfoBox } from '@/components/InfoBox' import { useLanguage } from '@/components/LanguagePicker/useLanguage' import { useGetProgrammesQuery } from '@/redux/populations' import { useAddUserUnitsMutation, useRemoveUserUnitsMutation } from '@/redux/users'