diff --git a/src/pages/Prototype/index.tsx b/src/pages/Prototype/index.tsx index 2d58e0a..20e050d 100644 --- a/src/pages/Prototype/index.tsx +++ b/src/pages/Prototype/index.tsx @@ -215,7 +215,9 @@ const Prototype = () => { } }; - return role === 'productOwner' || role === 'developer' ? ( + return role === 'productOwner' || + role === 'developer' || + role === 'client' ? ( <> {!templateLoading && !prototypeLoading ? ( <> @@ -362,10 +364,7 @@ const Prototype = () => { )} ) : ( - <> - {role === 'admin' && } - {role === 'client' && } - + <>{role === 'admin' && } ); };