Files
mutiny-web/src/utils/baseUrl.ts
Paul Miller 7a962c5f92 more fixes
2023-10-03 14:59:45 -05:00

13 lines
414 B
TypeScript

import { Capacitor } from "@capacitor/core";
// On mobile the origin URL is localhost, so we hardcode the base URL
export function baseUrlAccountingForNative(network?: string) {
if (Capacitor.isNativePlatform()) {
return network === "bitcoin"
? "https://app.mutinywallet.com"
: "https://signet-app.mutinywallet.com";
} else {
return window.location.origin;
}
}