Skip to content

Commit 3413fdc

Browse files
committed
chore: Update useStepQueue ts deinfine
1 parent 489e900 commit 3413fdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hooks/useStepQueue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function isActive(step: StepStatus) {
2929
export default (
3030
callback: (
3131
step: StepStatus,
32-
) => Promise<void> | typeof SkipStep | typeof DoStep,
32+
) => Promise<void> | void | typeof SkipStep | typeof DoStep,
3333
): [() => void, StepStatus] => {
3434
const [step, setStep] = React.useState<StepStatus>(STEP_NONE);
3535

0 commit comments

Comments
 (0)