add loading indicator for inital projects fetch

This commit is contained in:
Abbey Campbell
2025-12-15 14:39:11 -08:00
parent 23661e7506
commit e9e2a7e842

View File

@@ -140,6 +140,11 @@ const Projects = ( {
</View>
);
}
if ( isLoading && projects.length === 0 ) {
return <ActivityIndicator size={50} />;
}
return (
<ProjectList
projects={projects}