diff --git a/front/packages/ui/src/details/header.tsx b/front/packages/ui/src/details/header.tsx index c5bf93f5..220e9ac2 100644 --- a/front/packages/ui/src/details/header.tsx +++ b/front/packages/ui/src/details/header.tsx @@ -190,21 +190,24 @@ const TitleLine = ({ }), ])} > -

theme.user.paragraph, - display: "flex", - })} - > - {t("show.studio")}:{" "} - {isLoading ? ( - - ) : ( - theme.user.link })}> - {studio!.name} - - )} -

+ {isLoading || + (studio && ( +

theme.user.paragraph, + display: "flex", + })} + > + {t("show.studio")}:{" "} + {isLoading ? ( + + ) : ( + theme.user.link })}> + {studio.name} + + )} +

+ ))} );