Thx @damian101! - Your Solution worked! These are the steps I followed to Downgrade. Here's a helpful one liner script to Downgrade to VERSION: 2.21.8 and install it with echo prints comments below:
echo -e "Cloning REPO frm AUR\n" ;
git clone https://aur.archlinux.org/eddie-ui.git ;
cd eddie-ui ;
echo -e "Optional - Used for finding the Commit Hash.\nDisplaying Commits with Hashes\n" ;
git log | head -n 20 ; sleep 5 ;
echo -e "Checking Out Git Version: 2.21.8\n" ;
git checkout a72bd13a315f ;
echo -e "Installing Downgraded Version\n" ;
makepkg -si ;
echo -e "\nVersion 2.21.8 Installed\nDONE!"
Pinned Comments