style: fint lix

This commit is contained in:
Ricardo Arturo Cabral Mejia 2022-01-20 13:06:51 +00:00 committed by fiatjaf
parent 79d4846d98
commit fd09b3aaba

View File

@ -1,6 +1,6 @@
import {LocalStorage} from 'quasar' import {LocalStorage} from 'quasar'
const isClientUsingTor = () => window.location.hostname.endsWith('.onion'); const isClientUsingTor = () => window.location.hostname.endsWith('.onion')
const getMainnetRelays = () => { const getMainnetRelays = () => {
const relays = { const relays = {
@ -29,12 +29,12 @@ const getMainnetRelays = () => {
const getTorRelays = () => ({ const getTorRelays = () => ({
'wss://jgqaglhautb4k6e6i2g34jakxiemqp6z4wynlirltuukgkft2xuglmqd.onion': {read: true, write: true}, 'wss://jgqaglhautb4k6e6i2g34jakxiemqp6z4wynlirltuukgkft2xuglmqd.onion': {read: true, write: true},
}); })
export default function () { export default function () {
const relays = isClientUsingTor() const relays = isClientUsingTor()
? getTorRelays() ? getTorRelays()
: getMainnetRelays(); : getMainnetRelays()
return { return {
keys: LocalStorage.getItem('keys') || {}, // {priv, pub } keys: LocalStorage.getItem('keys') || {}, // {priv, pub }