RegisteredView needs data tags as not reused from UnregisteredView.
This commit is contained in:
parent
c70536996e
commit
b19150bbba
1 changed files with 2 additions and 0 deletions
|
@ -133,6 +133,7 @@ export function RegisteredView({ client, isPasswordlessUser }: Props) {
|
||||||
type="text"
|
type="text"
|
||||||
required
|
required
|
||||||
autoComplete="off"
|
autoComplete="off"
|
||||||
|
data-testid="home_callName"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
|
@ -140,6 +141,7 @@ export function RegisteredView({ client, isPasswordlessUser }: Props) {
|
||||||
size="lg"
|
size="lg"
|
||||||
className={styles.button}
|
className={styles.button}
|
||||||
disabled={loading}
|
disabled={loading}
|
||||||
|
data-testid="home_go"
|
||||||
>
|
>
|
||||||
{loading ? t("Loading…") : t("Go")}
|
{loading ? t("Loading…") : t("Go")}
|
||||||
</Button>
|
</Button>
|
||||||
|
|
Loading…
Reference in a new issue