Jupyter-lab didn't open in Microsoft edge browser

I installed jupyter-lab in a virtual env of miniconda3 on Ubuntu 22.04.4 LTS Windows10, using the conda command conda install jupyter.

Then, I generated jupyter_lab_config.py and edited in the file as follows

c.ServerApp.browser = ‘“/mnt/c/Program Files (x86)/Microsoft/Edge/Application/msedge.exe” %s’

I ran jupyter-lab in the miniconda3 env, but

File not found
It may have been moved, edited, or deleted

was shown on my Microsoft edge browser, resulting jupyter-lab didn’t open. The address bar on the browser indicated

file:///home/user_name/.local/share/jupyter/runtime/jpserver-11635-open.html

Instead, jupyter-lab was successfully opend when I copied and pased a URL shown in Ubuntu into the address bar, for example

http://localhost:8888/lab?token=

And I could open jupyter-lab by typing

file://wsl.localhost/Ubuntu/home/user_name/.local/share/jupyter/runtime/jpserver-11635-open.html

in the address bar.

I want to open jupyter-lab in the edge browser just by running jupyter-lab in Ubuntu.

I’d be pleased if you tell me any idea.