This commit is contained in:
KoalaSat 2023-01-23 16:58:00 +00:00 committed by GitHub
commit 4d5b93dd24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -329,7 +329,7 @@ const styles = StyleSheet.create({
textDecorationLine: 'underline', textDecorationLine: 'underline',
}, },
verifyIcon: { verifyIcon: {
paddingTop: 3, paddingTop: 4,
paddingLeft: 5, paddingLeft: 5,
}, },
}) })

View File

@ -25,7 +25,7 @@ export const ProfileLoadPage: React.FC = () => {
React.useCallback(() => { React.useCallback(() => {
if (publicKey && relayPoolReady) loadMeta() if (publicKey && relayPoolReady) loadMeta()
return () => relayPool?.unsubscribe(['profile-load-meta-pets', 'profile-load-notes']) return () => relayPool?.unsubscribe(['profile-load-notes'])
}, []), }, []),
) )