We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8631984 commit e1d6d80Copy full SHA for e1d6d80
packages/mcp-provider-mobile-web/src/tools/offline-guidance/get_mobile_lwc_offline_guidance.ts
@@ -29,11 +29,6 @@ import { zodToJsonSchema } from 'zod-to-json-schema';
29
30
const EMPTY_INPUT_SCHEMA = z.object({}).describe('No input required');
31
32
-// Cast to avoid deep type instantiation when passing to zodToJsonSchema
33
-const EXPERT_ISSUES_JSON_SCHEMA = zodToJsonSchema(
34
- ExpertCodeAnalysisIssuesSchema as z.ZodType,
35
-) as Record<string, unknown>;
36
-
37
type InputArgsShape = typeof EMPTY_INPUT_SCHEMA.shape;
38
type OutputArgsShape = typeof ExpertsReviewInstructionsSchema.shape;
39
type InputArgs = z.infer<typeof EMPTY_INPUT_SCHEMA>;
0 commit comments