We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddf635e commit 231bdceCopy full SHA for 231bdce
package.json
@@ -4,7 +4,8 @@
4
"scripts": {
5
"dev": "vite",
6
"build": "tsc && vite build",
7
- "preview": "vite preview"
+ "preview": "vite preview",
8
+ "typecheck": "tsc"
9
},
10
"dependencies": {
11
"@mdi/react": "^1.4.0",
src/links.ts
@@ -53,7 +53,7 @@ export interface Links {
53
}
54
55
export const links: Links = {
56
- items: linksData.items,
+ items: linksData.items as LinkGroup[],
57
58
59
export function useAllLinks(): LinkItem[] {
0 commit comments