Linting.
This commit is contained in:
parent
82465bdf7a
commit
8121528f76
|
@ -47,9 +47,7 @@
|
||||||
<Button cta on:click={forgot} disabled={!email}>
|
<Button cta on:click={forgot} disabled={!email}>
|
||||||
Reset your password
|
Reset your password
|
||||||
</Button>
|
</Button>
|
||||||
<ActionButton quiet on:click={() => $goto("../")}>
|
<ActionButton quiet on:click={() => $goto("../")}>Back</ActionButton>
|
||||||
Back
|
|
||||||
</ActionButton>
|
|
||||||
</Layout>
|
</Layout>
|
||||||
</Layout>
|
</Layout>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -113,15 +113,13 @@
|
||||||
|
|
||||||
// Create a flag so that it will only try to save completed forms
|
// Create a flag so that it will only try to save completed forms
|
||||||
$: partialGoogle =
|
$: partialGoogle =
|
||||||
providers.google?.config?.clientID ||
|
providers.google?.config?.clientID || providers.google?.config?.clientSecret
|
||||||
providers.google?.config?.clientSecret
|
|
||||||
$: partialOidc =
|
$: partialOidc =
|
||||||
providers.oidc?.config?.configs[0].configUrl ||
|
providers.oidc?.config?.configs[0].configUrl ||
|
||||||
providers.oidc?.config?.configs[0].clientID ||
|
providers.oidc?.config?.configs[0].clientID ||
|
||||||
providers.oidc?.config?.configs[0].clientSecret
|
providers.oidc?.config?.configs[0].clientSecret
|
||||||
$: googleComplete =
|
$: googleComplete =
|
||||||
providers.google?.config?.clientID &&
|
providers.google?.config?.clientID && providers.google?.config?.clientSecret
|
||||||
providers.google?.config?.clientSecret
|
|
||||||
$: oidcComplete =
|
$: oidcComplete =
|
||||||
providers.oidc?.config?.configs[0].configUrl &&
|
providers.oidc?.config?.configs[0].configUrl &&
|
||||||
providers.oidc?.config?.configs[0].clientID &&
|
providers.oidc?.config?.configs[0].clientID &&
|
||||||
|
|
Loading…
Reference in New Issue