update logo, limit step navigation (1-6), and add custom toast
This commit is contained in:
7
types/step.ts
Normal file
7
types/step.ts
Normal file
@ -0,0 +1,7 @@
|
||||
export type StepStatus = 'incomplete' | 'completed' | 'invalid';
|
||||
|
||||
export type StepValidationStatus = Record<number, StepStatus>;
|
||||
|
||||
export type StepValidationStatusSetter = React.Dispatch<
|
||||
React.SetStateAction<StepValidationStatus>
|
||||
>;
|
Reference in New Issue
Block a user