Skip to content

Commit 2f0e447

Browse files
committed
fix: 🐛 Fix incorrect pluralization of entity page title
1 parent 1b243f1 commit 2f0e447

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/entities/note/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export const metadata = {
33
description: 'Definition of the Note entity',
44
}
55

6-
# Notes
6+
# Note
77

88
Notes represent a piece of content on a Versia instance. They can be posted by [Users](/entities/user) and are displayed in a user's feed. Notes can contain text, images, and other media. {{ className: 'lead' }}
99

components/Navigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ export const navigation: NavGroup[] = [
291291
{ title: "Follow", href: "/entities/follow" },
292292
{ title: "FollowAccept", href: "/entities/follow-accept" },
293293
{ title: "FollowReject", href: "/entities/follow-reject" },
294-
{ title: "Notes", href: "/entities/note" },
294+
{ title: "Note", href: "/entities/note" },
295295
{ title: "InstanceMetadata", href: "/entities/instance-metadata" },
296296
{ title: "Unfollow", href: "/entities/unfollow" },
297297
{ title: "Users", href: "/entities/user" },

0 commit comments

Comments
 (0)