diff --git a/src/grants/components/grant-list/grant-list.tsx b/src/grants/components/grant-list/grant-list.tsx index 3010f2b..7164f9c 100644 --- a/src/grants/components/grant-list/grant-list.tsx +++ b/src/grants/components/grant-list/grant-list.tsx @@ -2,6 +2,8 @@ import { useMemo } from 'react'; +import { Spinner } from '@nextui-org/react'; + import { VirtualWrapper } from '@/shared/components/virtual-wrapper'; import { GrantListItem } from './grant-list-item'; @@ -17,7 +19,11 @@ export const GrantList = () => { if (!hasNextPage) return
No more grants available.
; - returnLoading Grants ...
;