Update loading messages for group detection
cgen-b8d01cde6ee04fcfae3ae7a0b1e22065
This commit is contained in:
parent
ba2b8bbdf3
commit
fe181645d4
1 changed files with 4 additions and 3 deletions
|
|
@ -154,11 +154,12 @@ const SubdomainPassport = () => {
|
|||
|
||||
// Loading passport data
|
||||
if (loading) {
|
||||
const passportType = subdomainInfo.isCreatorPassport
|
||||
? "creator"
|
||||
: "group";
|
||||
return (
|
||||
<LoadingScreen
|
||||
message={`Loading ${
|
||||
subdomainInfo.isCreatorPassport ? "creator" : "project"
|
||||
} passport...`}
|
||||
message={`Loading ${passportType} passport...`}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue