Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/en/resources/integrations/_meta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ const meta: MetaRecord = {
"customer-support": {
title: "Customer Support",
},
hospitality: {
title: "Retail & Hospitality",
},
"-- Submit your Server": {
type: "separator",
title: "Submit your server",
Expand Down
9 changes: 9 additions & 0 deletions app/en/resources/integrations/hospitality/_meta.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import type { MetaRecord } from "nextra";

const meta: MetaRecord = {
"toast-api": {
title: "Toast POS API",
},
};
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing default theme configuration in hospitality meta

Medium Severity

The hospitality/_meta.tsx file is missing the "*" default theme configuration that all other integration category meta files include. Every other category (databases, payments, entertainment, sales, customer-support, etc.) has a "*": { theme: { breadcrumb: true, toc: true, copyPage: true } } entry. Without this, the Toast API page will render without breadcrumb navigation, table of contents, and copy page functionality, making it inconsistent with all other integration pages.

Fix in Cursor Fix in Web


export default meta;
Loading