9e699c4dd45fdfd0f42b11d04ca0466688f70556
useCallback hooks were placed AFTER conditional early returns. When authLoading toggled from true -> false, the hook count changed between renders (14 hooks vs 17 hooks), triggering React's "Rendered more hooks than during the previous render" error. Moved all useCallback definitions before the conditional returns. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Description
No description provided