Change the MyStories sort order

This commit is contained in:
Josh Perez 2022-08-24 17:39:10 -04:00 committed by GitHub
parent 3eecd23c8d
commit 981bbf1a3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 8 deletions

View file

@ -59,7 +59,7 @@ function search(
}
function getNewestMyStory(story: MyStoryType): StoryViewType {
return story.stories[story.stories.length - 1];
return story.stories[0];
}
export type PropsType = {