diff --git a/pages/profile/profile.go b/pages/profile/profile.go index 185d41a7..9e660b42 100644 --- a/pages/profile/profile.go +++ b/pages/profile/profile.go @@ -42,6 +42,7 @@ func Profile(ctx *aero.Context, viewUser *arn.User) string { } }, func() { posts = viewUser.Posts() + arn.SortPostsLatestFirst(posts) if len(posts) > maxPosts { posts = posts[:maxPosts]