diff --git a/apps/portal/src/pages/resumes/browse.tsx b/apps/portal/src/pages/resumes/browse.tsx index af1cae93..4182fd63 100644 --- a/apps/portal/src/pages/resumes/browse.tsx +++ b/apps/portal/src/pages/resumes/browse.tsx @@ -14,6 +14,7 @@ import { CheckboxList, DropdownMenu, Pagination, + Spinner, Tabs, TextInput, } from '@tih/ui'; @@ -528,7 +529,15 @@ export default function ResumeHomePage() {
- {sessionData === null && tabsValue !== BROWSE_TABS_VALUES.ALL ? ( + {allResumesQuery.isLoading || + starredResumesQuery.isLoading || + myResumesQuery.isLoading ? ( +
+ {' '} + {' '} +
+ ) : sessionData === null && + tabsValue !== BROWSE_TABS_VALUES.ALL ? (