mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-15 23:35:53 +08:00
chore: name field is hidden when empty name is received from invite details api (#1036)
This commit is contained in:
parent
d9cf9071d3
commit
63693a4185
@ -173,6 +173,11 @@ function SignUp({ version }: SignUpProps): JSX.Element {
|
||||
setFunction(value);
|
||||
};
|
||||
|
||||
const getIsNameVisible = (): boolean =>
|
||||
!(firstName.length === 0 && !isPreferenceVisible);
|
||||
|
||||
const isNameVisible = getIsNameVisible();
|
||||
|
||||
return (
|
||||
<WelcomeLeftContainer version={version}>
|
||||
<FormWrapper>
|
||||
@ -194,6 +199,7 @@ function SignUp({ version }: SignUpProps): JSX.Element {
|
||||
/>
|
||||
</div>
|
||||
|
||||
{isNameVisible && (
|
||||
<div>
|
||||
<Label htmlFor="signupFirstName">First Name</Label>
|
||||
<Input
|
||||
@ -207,6 +213,8 @@ function SignUp({ version }: SignUpProps): JSX.Element {
|
||||
disabled={isDetailsDisable}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div>
|
||||
<Label htmlFor="organizationName">Organization Name</Label>
|
||||
<Input
|
||||
|
Loading…
x
Reference in New Issue
Block a user