diff --git a/mint.json b/mint.json index 51a98d110..7c9ef5c65 100644 --- a/mint.json +++ b/mint.json @@ -6,11 +6,7 @@ "dark": "/logo/dark.svg", "href": "https://mintlify.com" }, - "layout": "sidenav", "favicon": "/favicon.svg", - "sidebar": { - "items": "border" - }, "colors": { "primary": "#0D9373", "light": "#55D799", diff --git a/settings/authentication-personalization/partial-authentication.mdx b/settings/authentication-personalization/partial-authentication.mdx index 0075d4dd5..2d77eb0d1 100644 --- a/settings/authentication-personalization/partial-authentication.mdx +++ b/settings/authentication-personalization/partial-authentication.mdx @@ -14,11 +14,11 @@ You can authenticate users through handshake methods such as: Partial Authentication shares all the same features as [Authentication](./authentication), but with the ability to allow unauthenticated users to view certain pages. -By default, all pages are protected. You can specify which pages should be publicly accessible by adding the `isPublic` property to the page's frontmatter. +By default, all pages are protected. You can specify which pages should be publicly accessible by adding the `public` property to the page's frontmatter. ```mdx --- title: "My Page" -isPublic: true +public: true --- ```