We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08b782d commit c44aecfCopy full SHA for c44aecf
frontend/src/external/register/PasswordDoubleInput.tsx
@@ -29,11 +29,7 @@ const query = queryOptions({
29
queryFn: ({ signal }) => graphqlRequest({ query: QUERY, signal }),
30
});
31
32
-type PasswordDoubleInputProps = { forceShowNewPasswordInvalid: boolean };
33
-
34
-function PasswordDoubleInput({
35
- forceShowNewPasswordInvalid,
36
-}: PasswordDoubleInputProps) {
+function PasswordDoubleInput() {
37
const {
38
data: { siteConfig },
39
} = useSuspenseQuery(query);
@@ -45,7 +41,7 @@ function PasswordDoubleInput({
45
41
<div>
46
42
<PasswordCreationDoubleInput
47
43
siteConfig={siteConfig}
48
- forceShowNewPasswordInvalid={forceShowNewPasswordInvalid}
44
+ forceShowNewPasswordInvalid={false}
49
variant="register"
50
/>
51
</div>
0 commit comments