Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/fxa-auth-server/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2676,15 +2676,15 @@ const convictConf = convict({
},
step: {
// The time interval to use. In this case 1 second
default: 1,
default: 5 * 60,
doc: 'Overrides step otp options',
format: Number,
env: 'MFA__OTP__STEP',
},
window: {
// Number of steps contained in the window. In this case
// 5 minutes worth of steps
default: 5 * 60,
default: 1,
doc: 'Overrides window otp options',
format: Number,
env: 'MFA__OTP__WINDOW',
Expand Down