diff --git a/website/docs/typescript-support.md b/website/docs/typescript-support.md
index 25c36c2c59..8bd87a1f89 100644
--- a/website/docs/typescript-support.md
+++ b/website/docs/typescript-support.md
@@ -112,11 +112,7 @@ The best IDEs (VS Code, WebStorm, IntelliJ...) will provide a nice auto-completi
By default, the Docusaurus TypeScript config does not type-check JavaScript files.
-The `// @ts-check` comment ensures the config file is properly type-checked when running:
-
-```bash npm2yarn
-npx tsc
-```
+The `// @ts-check` comment ensures the config file is properly type-checked when running `npx tsc`.
:::
diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js
index 5c7e1c0dec..ff88fba023 100644
--- a/website/docusaurus.config.js
+++ b/website/docusaurus.config.js
@@ -59,7 +59,7 @@ const isI18nStaging = process.env.I18N_STAGING === 'true';
const isVersioningDisabled = !!process.env.DISABLE_VERSIONING || isI18nStaging;
const TwitterSvg =
- '';
+ '';
/** @type {import('@docusaurus/types').Config} */
const config = {
@@ -360,7 +360,7 @@ const config = {
},
announcementBar: {
id: 'announcementBar-2', // Increment on change
- content: `⭐️ If you like Docusaurus, give it a star on GitHub and follow us on Twitter ${TwitterSvg}`,
+ content: `⭐️ If you like Docusaurus, give it a star on GitHub and follow us on Twitter ${TwitterSvg}`,
},
prism: {
// We need to load markdown again so that YAML is loaded before MD
diff --git a/website/src/components/BrowserWindow/index.tsx b/website/src/components/BrowserWindow/index.tsx
index 58d6b74cba..26f315356c 100644
--- a/website/src/components/BrowserWindow/index.tsx
+++ b/website/src/components/BrowserWindow/index.tsx
@@ -6,6 +6,7 @@
*/
import React, {type ReactNode} from 'react';
+import clsx from 'clsx';
import styles from './styles.module.css';
@@ -28,7 +29,9 @@ export default function BrowserWindow({
-