This repository was archived by the owner on Sep 10, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
tools/syn2mas/src/schemas Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1313// limitations under the License.
1414
1515import { useState } from "react" ;
16- import { z } from "zod" ;
16+ import * as z from "zod" ;
1717
1818import { PageInfo } from "./gql/graphql" ;
1919
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import {
1919} from "@tanstack/react-router" ;
2020import { TanStackRouterDevtools } from "@tanstack/router-devtools" ;
2121import { Client } from "urql" ;
22- import { z } from "zod" ;
22+ import * as z from "zod" ;
2323
2424import Layout from "../components/Layout" ;
2525import NotFound from "../components/NotFound" ;
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import IconKey from "@vector-im/compound-design-tokens/icons/key.svg?react";
1818import { Alert , Button , Text } from "@vector-im/compound-web" ;
1919import { useTranslation } from "react-i18next" ;
2020import { useMutation , useQuery } from "urql" ;
21- import { z } from "zod" ;
21+ import * as z from "zod" ;
2222
2323import BlockList from "../components/BlockList" ;
2424import { ButtonLink } from "../components/ButtonLink" ;
Original file line number Diff line number Diff line change 1212// See the License for the specific language governing permissions and
1313// limitations under the License.
1414
15- import { z } from "zod" ;
15+ import * as z from "zod" ;
1616
1717const uriDatabaseConfig = z . object ( {
1818 uri : z . string ( ) ,
Original file line number Diff line number Diff line change 1212// See the License for the specific language governing permissions and
1313// limitations under the License.
1414
15- import { z } from "zod" ;
15+ import * as z from "zod" ;
1616
1717const sqlite3DatabaseConfig = z . object ( {
1818 name : z . literal ( "sqlite3" ) ,
You can’t perform that action at this time.
0 commit comments