Skip to content

Commit e3aa078

Browse files
committed
Add missing props
1 parent 8639907 commit e3aa078

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/src/lib/stores/sign-in-store.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,12 +575,15 @@ export class SignInStore extends TypedBaseStore<SignInState | null> {
575575
const csrfToken = uuid()
576576

577577
new Promise<Account>((resolve, reject) => {
578-
const { endpoint, resultCallback } = currentState
578+
const { endpoint, resultCallback, supportsBasicAuth, forgotPasswordUrl } =
579+
currentState
579580
log.info('[SignInStore] initializing OAuth flow')
580581
this.setState({
581582
kind: SignInStep.Authentication,
582583
endpoint,
583584
resultCallback,
585+
supportsBasicAuth,
586+
forgotPasswordUrl,
584587
error: null,
585588
loading: true,
586589
oauthState: {

0 commit comments

Comments
 (0)