R Studio visual editing not working

Quarto works out of the box, which I couldn’t get working in Fedora, and knitting to html is fine, so I’m really happy. But I can’t seem to get visual editing to work. When I try to go into visual mode it just spins but nothing happens and no error messages are produced. This is the flake I am using. I’d appreciate any ideas.

{
  description = "Tidymodels dev shell";
  inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
  inputs.flake-utils.url = "github:numtide/flake-utils";

  outputs = { nixpkgs, flake-utils, ... }:
    flake-utils.lib.eachDefaultSystem (system:
      let
        pkgs = nixpkgs.legacyPackages.${system};
        RStudio-with-my-packages = pkgs.rstudioWrapper.override{ packages = with pkgs.rPackages;
        [
          tidyverse
          palmerpenguins
          ggthemes
          shiny
          tidymodels
          knitr
        ]; };
      in
      {
        devShells.default = pkgs.mkShell {
          packages = [ pkgs.bashInteractive ];
          buildInputs = with pkgs; [
            R rPackages.pagedown chromium pandoc RStudio-with-my-packages
          ];
        };
      });
}

Any ideas for this? I’ve moved from VM to hardware so I need to figure out something. Thanks.