| 19 | import usePasscodeStore from "@/store/passcodeStore"; |
| 20 | |
| 21 | interface PasscodeSetupModalProps { |
| 22 | visible: boolean; |
| 23 | onComplete: () => void; |
| 24 | onCancel: () => void; |
| 25 | } |
| 26 | |
| 27 | type SetupStep = "initial" | "confirm" | "error"; |
| 28 |
nothing calls this directly
no outgoing calls
no test coverage detected