diff --git a/src/features/library/LibraryPage.tsx b/src/features/library/LibraryPage.tsx index 729fd53..256dad7 100644 --- a/src/features/library/LibraryPage.tsx +++ b/src/features/library/LibraryPage.tsx @@ -383,6 +383,25 @@ function HomeView({ // Empty state: sin grupos ni procesos (ya terminó de cargar) if (groups.length === 0 && processes.length === 0) { if (isClientRole) { + if (user?.platformRole === 'client_editor') { + return ( +
+ +

Tu biblioteca está vacía

+

+ Importá tu primer BPMN para empezar a cuantificar costos +

+ +
+ ) + } return (
@@ -847,7 +866,7 @@ export function LibraryPage() { )} - {!isClientRole && ( + {user.platformRole !== 'client_viewer' && (