WoT implemented, plus other fixes #160
@ -24,9 +24,7 @@ export const Layout = () => {
|
||||
const dispatch = useAppDispatch()
|
||||
const { ndk, fetchEventFromUserRelays } = useNDKContext()
|
||||
const userState = useAppSelector((state) => state.user)
|
||||
const { siteWotStatus, siteWotLevel, userWotLevel } = useAppSelector(
|
||||
(state) => state.wot
|
||||
)
|
||||
const { siteWotStatus } = useAppSelector((state) => state.wot)
|
||||
|
||||
// calculate site's wot
|
||||
useEffect(() => {
|
||||
@ -46,7 +44,7 @@ export const Layout = () => {
|
||||
})
|
||||
}
|
||||
}
|
||||
}, [ndk, siteWotLevel, dispatch])
|
||||
}, [ndk, dispatch])
|
||||
|
||||
// calculate user's wot
|
||||
useEffect(() => {
|
||||
@ -62,7 +60,7 @@ export const Layout = () => {
|
||||
toast.error('An error occurred in calculating user web-of-trust!')
|
||||
})
|
||||
}
|
||||
}, [ndk, userState.user, userWotLevel, dispatch])
|
||||
}, [ndk, userState.user, dispatch])
|
||||
|
||||
// get site's wot level
|
||||
useEffect(() => {
|
||||
@ -72,7 +70,8 @@ export const Layout = () => {
|
||||
fetchEventFromUserRelays(
|
||||
{
|
||||
kinds: [NDKKind.AppSpecificData],
|
||||
'#d': ['degmods']
|
||||
'#d': ['degmods'],
|
||||
authors: [hexPubkey]
|
||||
},
|
||||
hexPubkey,
|
||||
UserRelaysType.Both
|
||||
@ -94,7 +93,8 @@ export const Layout = () => {
|
||||
fetchEventFromUserRelays(
|
||||
{
|
||||
kinds: [NDKKind.AppSpecificData],
|
||||
'#d': ['degmods']
|
||||
'#d': ['degmods'],
|
||||
authors: [hexPubkey]
|
||||
},
|
||||
hexPubkey,
|
||||
UserRelaysType.Both
|
||||
|
Loading…
Reference in New Issue
Block a user