How to change "http://localhost:8080" on the alert request permission to the name of the app for cordova ios app

I just pushed my app to Testflight and having the issue with this - (https://snipboard.io/u6eqLa.jpg).

How can I change the “http://localhost:8080” to my app name?

I did install the geolocation plugin by cordova plugin add cordova-plugin-geolocation --variable GEOLOCATION_USAGE_DESCRIPTION=“my_project would like to use your location" and Then manually edit the platform/ios/{project}/{project}/project.info.plist file and add the following lines:

<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Add your description for requiring permission here</string>

<key>NSLocationAlwaysUsageDescription</key>
<string>Add your description for requiring permission here</string>

<key>NSLocationWhenInUseUsageDescription</key>
<string>Add your description for requiring permission here</string>

I did a lot of research and tried a lot of ways on Stackoverflow but didnt help at all. Can anyone have ideas to fix it? Thanks a lot!