mirror of
https://github.com/ipnet-mesh/meshcore-hub.git
synced 2026-06-21 18:45:14 +02:00
f8ce554d24
The profile page failed to render with "Cannot access 'h' before initialization". The /profile/me branch destructured `signal` from params and used it in the apiGet call, but later redeclared `const signal = ac.signal` in the same block scope. Block-scoped const hoisting put the earlier reference in the temporal dead zone. Drop the redundant inner declaration and pass `ac.signal` directly to the form submit listener. Fixes #233 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>