-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed feed issue #366
Fixed feed issue #366
Conversation
@@ -86,6 +85,18 @@ export const Feed: React.FC<FeedScreenProps> = ({navigation}) => { | |||
} | |||
}, [activeSortBy]); | |||
|
|||
useEffect(() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete this after your test please
// authors: activeSortBy && contacts?.data?.?? [], | ||
// sortBy: activeSortBy, | ||
limit: 50, | ||
authors: publicKey ? [publicKey] : undefined, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We want all notes in the Main feed, not only our notes when we are connected
apps/mobile/src/app/Router.tsx
Outdated
const {publicKey} = useAuth(); | ||
return ( | ||
<RootStack.Navigator screenOptions={{headerShown: false}}> | ||
{/* {publicKey ? ( | ||
{publicKey ? ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete this. We don't want to force the Auth
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Redo the comment as is before, it's another thing
apps/mobile/src/app/Router.tsx
Outdated
const {publicKey} = useAuth(); | ||
return ( | ||
<RootStack.Navigator screenOptions={{headerShown: false}}> | ||
{/* {publicKey ? ( | ||
{publicKey ? ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Redo the comment as is before, it's another thing
No description provided.