what did HF change?
There are probably more than one.
- Stricter cookie policy (the above phenomenon)
- Gradio behavior change
- Other bugs
The behavior change in Gradio is a very difficult topic, but in short, it occurs when you are using a newer version of Gradio 5. In many cases, you can avoid this by doing the following in app.py.
# demo.launch() # now
demo.launch(ssr_mode=False) # fix
Technical details on Discord.