()
| 46 | } |
| 47 | |
| 48 | export function useInnerStep() { |
| 49 | const context = useContext(InnerStepContext); |
| 50 | if (!context) { |
| 51 | throw new Error('useInnerStep must be used within InnerStepProvider'); |
| 52 | } |
| 53 | return context; |
| 54 | } |
| 55 |
no outgoing calls
no test coverage detected