Dashboard buttons do nothing
You click Add repo (or Run, Save, etc.) and nothing happens — no error, no spinner, no toast. Almost always this is a browser extension intercepting the page's network requests, so the request never leaves your browser.
The usual culprit: browser extensions
Crypto‑wallet extensions (MetaMask and similar) and aggressive ad / privacy
blockers inject scripts into every page and sometimes wrap or block the
browser's fetch. When that happens, the panel fires a request that silently
never goes out — so the action looks dead.
Tell‑tale sign: open DevTools (F12) → Console. If it's flooded with lines
like inpage.js, contentscript.js, Resetting the streams, or wallet errors
("Failed to connect to MetaMask", "Could not establish connection"), that
extension is the likely cause.
Fix
- Disable browser extensions for
automaintainer.intrane.fr(most extensions let you toggle per‑site), or - Use a clean browser profile with no extensions, or
- Try a different browser.
Re‑enable extensions afterward if you like — they only interfere with the live dashboard, not your data.
The panel now surfaces a red error toast ("Could not add repo — the request did not reach the server…") when a request is blocked, instead of failing silently. If you see that toast, it confirms a client‑side block (extension or network), not a server problem.
Also worth a try: a stale page
If the dashboard looks out of date right after an update, force a fresh copy:
- Hard refresh:
Ctrl‑Shift‑R(Windows/Linux) orCmd‑Shift‑R(macOS), or - DevTools → Network tab → check Disable cache → reload.
(The dashboard now sends Cache-Control: no-store, so this should be rare.)
Still stuck?
If actions still fail with all extensions disabled and after a hard refresh, it's not the browser — capture the Console error when you click the button and share it, along with anything in DevTools → Network for the failed request.