Skip to content

Commit

Permalink
feat: slow down autoHide (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
m1guelpf authored Dec 11, 2023
1 parent 7f3a0aa commit b133ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/store/idkit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const useIDKitStore = createWithEqualityFn<IDKitStore>()(
() => {
set({ stage: IDKITStage.SUCCESS, result })

if (get().autoClose) setTimeout(() => get().onOpenChange(false), 1000)
if (get().autoClose) setTimeout(() => get().onOpenChange(false), 2500)
},
response => {
let errorMessage: string | undefined = undefined
Expand Down

0 comments on commit b133ce9

Please sign in to comment.