Compare commits
No commits in common. "5e9594e65c0798c3a1710af2ace94c121092d70d" and "72251d9f4054317bd74039c5539b00bef77652b2" have entirely different histories.
5e9594e65c
...
72251d9f40
@ -170,8 +170,6 @@ export const AppBar = () => {
|
|||||||
</MenuItem>
|
</MenuItem>
|
||||||
<MenuItem
|
<MenuItem
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setAnchorElUser(null)
|
|
||||||
|
|
||||||
navigate(appPrivateRoutes.relays)
|
navigate(appPrivateRoutes.relays)
|
||||||
}}
|
}}
|
||||||
sx={{
|
sx={{
|
||||||
|
@ -86,10 +86,6 @@ export class AuthController {
|
|||||||
store.dispatch(setRelayMapAction(relayMap.map))
|
store.dispatch(setRelayMapAction(relayMap.map))
|
||||||
}
|
}
|
||||||
|
|
||||||
const currentLocation = window.location.hash.replace('#', '')
|
|
||||||
|
|
||||||
if (!Object.values(appPrivateRoutes).includes(currentLocation)) {
|
|
||||||
// User did change the location to one of the private routes
|
|
||||||
const visitedLink = getVisitedLink()
|
const visitedLink = getVisitedLink()
|
||||||
|
|
||||||
if (visitedLink) {
|
if (visitedLink) {
|
||||||
@ -101,7 +97,6 @@ export class AuthController {
|
|||||||
return Promise.resolve(appPrivateRoutes.homePage)
|
return Promise.resolve(appPrivateRoutes.homePage)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
checkSession() {
|
checkSession() {
|
||||||
const savedAuthToken = getAuthToken()
|
const savedAuthToken = getAuthToken()
|
||||||
|
@ -82,8 +82,7 @@ export const Login = () => {
|
|||||||
const redirectPath =
|
const redirectPath =
|
||||||
await authController.authAndGetMetadataAndRelaysMap(pubkey)
|
await authController.authAndGetMetadataAndRelaysMap(pubkey)
|
||||||
|
|
||||||
if (redirectPath) navigateAfterLogin(redirectPath)
|
navigateAfterLogin(redirectPath)
|
||||||
|
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
toast.error('Error capturing public key from nostr extension: ' + err)
|
toast.error('Error capturing public key from nostr extension: ' + err)
|
||||||
|
@ -71,12 +71,6 @@ export const RelaysPage = () => {
|
|||||||
}
|
}
|
||||||
}, [relaysInfo, relaysState?.info])
|
}, [relaysInfo, relaysState?.info])
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!compareObjects(relayMap, relaysState?.map)) {
|
|
||||||
setRelayMap(relaysState?.map)
|
|
||||||
}
|
|
||||||
}, [relayMap, relaysState?.map])
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
let isMounted = false
|
let isMounted = false
|
||||||
|
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
.container {
|
.container {
|
||||||
margin-top: 25px;
|
margin-top: 25px;
|
||||||
color: $text-color;
|
|
||||||
|
|
||||||
.relayURItextfield {
|
.relayURItextfield {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
Loading…
Reference in New Issue
Block a user