()
| 76 | } |
| 77 | |
| 78 | const getAuthToken = () => { |
| 79 | return localStorage.getItem("autofigure-token") || "" |
| 80 | } |
| 81 | |
| 82 | const updateConfig = useCallback((updates: Partial<AutoFigureConfig>) => { |
| 83 | setConfig(prev => ({ ...prev, ...updates })) |
no outgoing calls
no test coverage detected