Hello,
I’m unable to edit my app.py in my spaces. My account doesn’t show the 3 vertical dots at the top to edit.
Additionally, I can’t find the area where i can logout/ login to my account.
Hopefully this is a newbie error!
Hello,
I’m unable to edit my app.py in my spaces. My account doesn’t show the 3 vertical dots at the top to edit.
Additionally, I can’t find the area where i can logout/ login to my account.
Hopefully this is a newbie error!
If it’s an account issue, you’ll probably have to consult with HF ( website@huggingface.co ), but here’s how to isolate the problem:
A Hugging Face Space has two different “faces”:
https://huggingface.co/spaces/<owner>/<space>https://<space-subdomain>.hf.spaceThe Hub page typically embeds the running app from *.hf.space in an iframe, and browsers can restrict cookies/auth across these domains—especially on Safari/iOS or strict privacy modes. (Hugging Face)
Your symptoms (“no ⋮ menu”, “can’t find logout/login”) most often come from being in the app/embedded view or not being recognized as logged-in on the Hub view.
Look at the address bar:
…hf.space → you’re on the running app view (limited repo controls). (Hugging Face)huggingface.co/spaces/… → you’re on the repo (Hub) page where editing should be possible.Fix: Open the Hub repo page directly:
https://huggingface.co/spaces/<your-username-or-org>/<your-space-name>
On huggingface.co, logout is in the top-right profile menu (“Sign Out”). (Hugging Face Forums)
If you can’t find the menu, use direct endpoints:
https://huggingface.co/login
https://huggingface.co/logout
If logging in “does nothing” or keeps bouncing, jump to the Safari/iOS & privacy section below.
If the Space is under an organization, your role matters (read/contributor/write/admin). Only roles with sufficient permission can modify repo content. (Hugging Face)
Signs you might be read-only:
app.py*.hf.space (app view)huggingface.co/spaces/...).app.py → click Edit (pencil / edit-in-browser) → Commit changes.Verify login using the profile menu or the direct /login URL. (Hugging Face Forums)
If logged in, check whether the Space is owned by you or an org, and whether you have write access. (Hugging Face)
If it’s not your repo / you don’t have write access:
Because Spaces are cross-domain (huggingface.co + *.hf.space), cookie restrictions can break authentication and UI behavior. (Hugging Face)
If you’re on Safari/iOS and the Space is private or login-dependent, there are known reports that it may fail unless you adjust cross-site tracking/cookie settings or switch browsers. (Hugging Face Forums)
Troubleshooting steps (in order):
huggingface.co.Spaces are repos; you can always edit locally and push.
hf) cover login and repo operations. (Hugging Face)Example Git flow:
git clone https://huggingface.co/spaces/<owner>/<space>
cd <space>
# edit app.py
git add app.py
git commit -m "Edit app.py"
git push
No ⋮ menu + can’t find logout
Likely cause: you’re not in the Hub UI (or login/header not loading)
Fix: go to huggingface.co/spaces/..., then login via /login. (Hugging Face)
On Hub page, can see files but no Edit
Likely cause: not logged in or no write permission
Fix: login; if org-owned, get write role or duplicate. (Hugging Face)
Safari/iOS weirdness (private space, login loop, missing state)
Likely cause: cross-domain cookie restrictions
Fix: try another browser; adjust cross-site tracking/cookies. (Hugging Face)
If you want the shortest path to certainty: open the Space on huggingface.co/spaces/... and check whether Files and versions shows an Edit action on app.py. If it doesn’t, it’s almost always permissions or login/cookie state. (Hugging Face Forums)