@oussemasahbeni/keycloakify-login-shadcn 250004.0.13 → 250004.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -228,10 +228,11 @@ export function Template(props: {
|
|
|
228
228
|
<a
|
|
229
229
|
href="#"
|
|
230
230
|
id="try-another-way"
|
|
231
|
-
onClick={() => {
|
|
231
|
+
onClick={(event) => {
|
|
232
232
|
document.forms[
|
|
233
233
|
"kc-select-try-another-way-form" as never
|
|
234
234
|
].submit();
|
|
235
|
+
event.preventDefault();
|
|
235
236
|
return false;
|
|
236
237
|
}}
|
|
237
238
|
>
|