From 21f775741a738f9709d2e5d313e61ea47fe4de18 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Fri, 13 Mar 2026 08:29:36 -0700 Subject: [PATCH] More fixes --- plugins/template-function-1password/src/index.ts | 3 ++- src-web/components/graphql/GraphQLDocsExplorer.tsx | 6 +++--- tsconfig.json | 3 ++- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/plugins/template-function-1password/src/index.ts b/plugins/template-function-1password/src/index.ts index f5363348..e8b0655c 100644 --- a/plugins/template-function-1password/src/index.ts +++ b/plugins/template-function-1password/src/index.ts @@ -55,7 +55,8 @@ async function op( } } - return { client: _clients[hash], clientHash: hash }; + // oxlint-disable-next-line no-non-null-assertion + return { client: _clients[hash]!, clientHash: hash }; } async function getValue( diff --git a/src-web/components/graphql/GraphQLDocsExplorer.tsx b/src-web/components/graphql/GraphQLDocsExplorer.tsx index 230ebaf4..7c8e1cd5 100644 --- a/src-web/components/graphql/GraphQLDocsExplorer.tsx +++ b/src-web/components/graphql/GraphQLDocsExplorer.tsx @@ -146,7 +146,7 @@ export const GraphQLDocsExplorer = memo(function GraphQLDocsExplorer({ ) : (
@@ -202,7 +202,7 @@ function GraphQLExplorerHeader({ })}
diff --git a/tsconfig.json b/tsconfig.json index a7854e2e..8880a7df 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,5 +17,6 @@ "noEmit": true, "jsx": "react-jsx", "types": ["node"] - } + }, + "exclude": ["flatpak", "npm", "crates/yaak-templates/pkg"] }