An update for anyone who comes across this: It was an issue with the amdgpu drivers and default package manager Vulkan libraries.
To get everything working with wayland, I first downloaded amdgpu_install deb package from AMD drivers page (just filled in GPU info and it brought me to the download page) - they call it "Radeon Software for Linux". Installed the deb once downloaded (used apt install on it).
Once installed, amdgpu_install is available to use in the terminal. Read the instructions for which options to use when running amdgpu_install. I went with:
amdgpu_install -y --vulkan=amdvlk,pro --opencl=rocr,legacy --accept-eula
Once the driver is installed (with reboot), the newest vulkan SDK needs to be installed. This is easily missed but it's mentioned in the driver page "Release Notes". I just went to https://vulkan.lunarg.com/sdk/home and followed the instructions to install the latest SDK using the package manager - the apt instructions for me were:
wget -qO- https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo tee /etc/apt/trusted.gpg.d/lunarg.asc
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-1.3.250-jammy.list https://packages.lunarg.com/vulkan/1.3.250/lunarg-vulkan-1.3.250-jammy.list
sudo apt update
sudo apt install vulkan-sdk
I could see the above command installing a bunch of qt wayland libraries so I was hopeful. Sure enough, once complete, the crash was gone.