After updating to React Native v73.1, I'm getting the below error when trying to run the app in Windows:
error Cannot start server in new window because no terminal app was specified.
How can I fix it?
On a Mac machine, there aren't any issues. Only Windows is facing this issue.

I had the same issue using React Native 0.73.1, when I had to run release mode.
In the case of debug mode, you can simply use
npm startand thena.However, if you want to run release mode, use
npm startto run Metro, open a new terminal and executenpx react-native run-android --mode=release.This worked in my case.