diff --git a/packages/medusa/src/api/routes/admin/currencies/list-currencies.ts b/packages/medusa/src/api/routes/admin/currencies/list-currencies.ts
index f1f64d1a60..11f28d1312 100644
--- a/packages/medusa/src/api/routes/admin/currencies/list-currencies.ts
+++ b/packages/medusa/src/api/routes/admin/currencies/list-currencies.ts
@@ -42,6 +42,9 @@ import { FeatureFlagDecorators } from "../../../../utils/feature-flag-decorators
* source: |
* curl -X POST '{backend_url}/admin/currencies' \
* -H 'Authorization: Bearer {api_token}'
+ * security:
+ * - api_token: []
+ * - cookie_auth: []
* tags:
* - Currencies
* responses:
diff --git a/packages/medusa/src/api/routes/admin/currencies/update-currency.ts b/packages/medusa/src/api/routes/admin/currencies/update-currency.ts
index 9ddcb75418..8329a3dae9 100644
--- a/packages/medusa/src/api/routes/admin/currencies/update-currency.ts
+++ b/packages/medusa/src/api/routes/admin/currencies/update-currency.ts
@@ -43,6 +43,9 @@ import { EntityManager } from "typeorm"
* --data-raw '{
* "includes_tax": true
* }'
+ * security:
+ * - api_token: []
+ * - cookie_auth: []
* tags:
* - Currencies
* responses:
diff --git a/www/apps/api-reference/app/api/[area]/layout.tsx b/www/apps/api-reference/app/api/[area]/layout.tsx
index c693332aed..72260b0d39 100644
--- a/www/apps/api-reference/app/api/[area]/layout.tsx
+++ b/www/apps/api-reference/app/api/[area]/layout.tsx
@@ -33,8 +33,8 @@ export default function RootLayout({
className={clsx(
inter.variable,
robotoMono.variable,
- "bg-docs-bg dark:bg-docs-bg-dark font-base text-medium h-full w-full",
- "text-medusa-fg-subtle dark:text-medusa-fg-subtle-dark"
+ "bg-docs-bg font-base text-medium h-full w-full",
+ "text-medusa-fg-subtle"
)}
>
+
{securitySchema.type === "http" ? "HTTP Authorization Scheme" diff --git a/www/apps/api-reference/components/Tags/Operation/CodeSection/Responses/Sample/index.tsx b/www/apps/api-reference/components/Tags/Operation/CodeSection/Responses/Sample/index.tsx index 86b863bcf2..37615bef4c 100644 --- a/www/apps/api-reference/components/Tags/Operation/CodeSection/Responses/Sample/index.tsx +++ b/www/apps/api-reference/components/Tags/Operation/CodeSection/Responses/Sample/index.tsx @@ -91,7 +91,7 @@ const TagsOperationCodeSectionResponsesSample = ({ examples.find((ex) => ex.value === event.target.value) ) } - className="border-medusa-border-base dark:border-medusa-border-base-dark my-1 w-full rounded-sm border p-0.5" + className="border-medusa-border-base my-1 w-full rounded-sm border p-0.5" > {examples.map((example, index) => (