fix: string constructor in js causes oidc fast track
This commit is contained in:
parent
a846249be1
commit
ca32590e54
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ export async function loader({ request }: LoaderFunctionArgs) {
|
||||||
|
|
||||||
export async function action({ request }: ActionFunctionArgs) {
|
export async function action({ request }: ActionFunctionArgs) {
|
||||||
const formData = await request.formData()
|
const formData = await request.formData()
|
||||||
const oidcStart = String(formData.get('oidc-start'))
|
const oidcStart = formData.get('oidc-start')
|
||||||
|
|
||||||
if (oidcStart) {
|
if (oidcStart) {
|
||||||
const context = await getContext()
|
const context = await getContext()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue