mirror of
https://github.com/hzrd149/nostrudel.git
synced 2025-04-03 01:18:47 +02:00
change description
This commit is contained in:
parent
3451d12b65
commit
99a0b628a7
25
src/views/relays/cache/index.tsx
vendored
25
src/views/relays/cache/index.tsx
vendored
@ -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 (
|
||||
<Card borderColor={enabled ? "primary.500" : undefined} variant="outline">
|
||||
@ -132,11 +133,21 @@ function NostrRelayTray() {
|
||||
</Button>
|
||||
)}
|
||||
</CardHeader>
|
||||
<CardBody p="4" pt="0">
|
||||
<Text mb="2">A cool little app that runs a local relay in your systems tray</Text>
|
||||
<Text>Maximum capacity: Unlimited</Text>
|
||||
<Text>Performance: As fast as your computer</Text>
|
||||
</CardBody>
|
||||
{
|
||||
isAndroid ? (
|
||||
<CardBody p="4" pt="0">
|
||||
<Text mb="2">A cool little app that runs a local relay in your phone</Text>
|
||||
<Text>Maximum capacity: Unlimited</Text>
|
||||
<Text>Performance: As fast as your phone</Text>
|
||||
</CardBody>
|
||||
) : (
|
||||
<CardBody p="4" pt="0">
|
||||
<Text mb="2">A cool little app that runs a local relay in your systems tray</Text>
|
||||
<Text>Maximum capacity: Unlimited</Text>
|
||||
<Text>Performance: As fast as your computer</Text>
|
||||
</CardBody>
|
||||
)
|
||||
}
|
||||
</Card>
|
||||
);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user