diff --git a/src/views/relays/cache/index.tsx b/src/views/relays/cache/index.tsx index 2cac77ead..cb7121cd7 100644 --- a/src/views/relays/cache/index.tsx +++ b/src/views/relays/cache/index.tsx @@ -105,8 +105,9 @@ function NostrRelayTray() { location.reload(); }; - const githubUrl = navigator.userAgent.includes("Android") ? "https://github.com/greenart7c3/Citrine" : "https://github.com/CodyTseng/nostr-relay-tray" - const appName = navigator.userAgent.includes("Android") ? "Citrine" : "Nostr Relay Tray" + const isAndroid = navigator.userAgent.includes("Android") + const githubUrl = isAndroid ? "https://github.com/greenart7c3/Citrine" : "https://github.com/CodyTseng/nostr-relay-tray" + const appName = isAndroid ? "Citrine" : "Nostr Relay Tray" return ( @@ -132,11 +133,21 @@ function NostrRelayTray() { )} - - A cool little app that runs a local relay in your systems tray - Maximum capacity: Unlimited - Performance: As fast as your computer - + { + isAndroid ? ( + + A cool little app that runs a local relay in your phone + Maximum capacity: Unlimited + Performance: As fast as your phone + + ) : ( + + A cool little app that runs a local relay in your systems tray + Maximum capacity: Unlimited + Performance: As fast as your computer + + ) + } ); }