refactor: used constant for steps instead of strings (#751)

fixes #750
This commit is contained in:
Apoorv Taneja
2023-12-15 18:37:45 +05:30
committed by GitHub
parent e43e8f8c4a
commit 83dfe92d7a
2 changed files with 18 additions and 9 deletions

View File

@ -0,0 +1,5 @@
export const STEP = {
EMAIL: 'EMAIL',
NAME: 'NAME',
SIGN: "SIGN"
} as const;