I am running postgresql in Docker Container. I was connected to it using Pgadmin4 and it was all good until past hour or so and suddenly stopped working. its stuck in loading screen and its not working. I tried to uninstall postgres, pgadmin but nothing really worked.
I used the below commands
sudo apt autoremove pgadmin4
I have postgis installed if that helps
So I found a work around and thought it would be helpful to anyone who has similar issues.
Ubuntu 18.04
sudo apt remove pgadmin4
sudo rm -rf /home/${USER}/.config/pgadmin
sudo apt install pgadmin4
Hopefully that should work if anyone has a better answer please advice.