Skip to content

Commit 77a6007

Browse files
committed
Fix 'pnpm check' errors
1 parent 85552fa commit 77a6007

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"eslint-plugin-jsx-a11y": "^6.10.2",
4949
"globals": "^15.14.0",
5050
"nano-staged": "^0.8.0",
51+
"openapi-types": "^12.1.3",
5152
"prettier": "^3.4.2",
5253
"prettier-plugin-astro": "^0.14.1",
5354
"simple-git-hooks": "^2.11.1",

pnpm-lock.yaml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/PageFrame.astro

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
---
2+
// TODO: Investigate how to fix it in the proper way
3+
// @ts-expect-error - It's a virtual module
24
import MobileMenuToggle from "virtual:starlight/components/MobileMenuToggle";
35
import Analytics from "@vercel/analytics/astro";
4-
import type { Props } from "../props";
6+
import type { Props } from "@astrojs/starlight/props";
57
68
const { hasSidebar } = Astro.props;
79
---

0 commit comments

Comments
 (0)