diff --git a/frontend/Components/NoteCard/index.tsx b/frontend/Components/NoteCard/index.tsx index da406c7..e765e15 100644 --- a/frontend/Components/NoteCard/index.tsx +++ b/frontend/Components/NoteCard/index.tsx @@ -329,7 +329,7 @@ const styles = StyleSheet.create({ textDecorationLine: 'underline', }, verifyIcon: { - paddingTop: 3, + paddingTop: 4, paddingLeft: 5, }, }) diff --git a/frontend/Pages/ProfileLoadPage/index.tsx b/frontend/Pages/ProfileLoadPage/index.tsx index 606a205..ded0cff 100644 --- a/frontend/Pages/ProfileLoadPage/index.tsx +++ b/frontend/Pages/ProfileLoadPage/index.tsx @@ -25,7 +25,7 @@ export const ProfileLoadPage: React.FC = () => { React.useCallback(() => { if (publicKey && relayPoolReady) loadMeta() - return () => relayPool?.unsubscribe(['profile-load-meta-pets', 'profile-load-notes']) + return () => relayPool?.unsubscribe(['profile-load-notes']) }, []), )