Skip to content

Commit

Permalink
Fix zod
Browse files Browse the repository at this point in the history
  • Loading branch information
pokey committed Oct 8, 2023
1 parent 55ffc01 commit 2ce56f0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import z from "zod";
import { z } from "zod";
import {
SchemaInputType,
SchemaOutputType,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { PredicateOperand } from "web-tree-sitter";
import z from "zod";
import { z } from "zod";
import {
AcceptFunctionArgs,
HasSchema,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { PredicateOperand } from "web-tree-sitter";
import z from "zod";
import { z } from "zod";
import { operandToString } from "./predicateToString";

export function constructZodErrorMessages(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import z from "zod";
import { z } from "zod";
import { assertTypesEqual } from "./assertTypesEqual";
import { PredicateOperand } from "web-tree-sitter";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Range } from "@cursorless/common";
import z from "zod";
import { z } from "zod";
import { makeRangeFromPositions } from "../../util/nodeSelectors";
import { MutableQueryCapture } from "./QueryCapture";
import { QueryPredicateOperator } from "./QueryPredicateOperator";
Expand Down

0 comments on commit 2ce56f0

Please sign in to comment.