mdelias clears the build break blocking every deploy
A broken build meant nothing could ship at all, and mdelias traced it to the account section and fixed it.
The account area of the app, which includes the page where users manage their API keys, was quietly poisoning the entire build. Those pages were being generated ahead of time, before the app had the credentials it needs to talk to Supabase, the database and authentication service behind them. The build choked, and a build that fails takes every deploy down with it - features, fixes, everything stuck.
mdelias fixed it at the right level. Rather than patching each page one at a time, the change tells the whole account section to render on demand, when a real user request arrives with the credentials in hand. That let a pile of earlier per-page workarounds be deleted, and the fix was merged within a minute of opening.
Spotted something wrong? Or know the PR text has fresher detail than the writeup above?