diff --git a/client/src/components/ActivityCollection.tsx b/client/src/components/ActivityCollection.tsx index dc599dc..b37d8ac 100644 --- a/client/src/components/ActivityCollection.tsx +++ b/client/src/components/ActivityCollection.tsx @@ -7,7 +7,9 @@ type IProps = { }; export const ActivityCollection: FC = ({ activities, filterText }) => { - return ( + return activities === undefined ? ( + <> + ) : ( <>