As much as I use Gemini day-to-day, the chat interface is starting to feel a bit cluttered as my history grows. I've been thinking about the quality-of-life improvements that would make the experience much smoother, but I'm curious to know what the community thinks is the highest priority.
If you could only pick one of these features for Google to implement next, which would it be?
One recurring issue we ve been seeing with Supabase setups is not the database itself, but how credentials are managed across environments. The common pattern looks something like:
credentials stored in .env files or secrets managers
multiple environments (dev, staging, prod)
manual propagation or duplication across those environments
It works, but over time it seems easy for things to drift:
a key gets rotated in one environment but not others
a redeploy misses an env var
credentials get misconfigured during setup or migration