From a078f9f165e2a08b6169da9e0f2fb842f31d9058 Mon Sep 17 00:00:00 2001 From: Bryan Eastwood Date: Tue, 10 Dec 2024 00:05:02 -0500 Subject: [PATCH] fix import ordering --- typescript/packages/wallets/crossmint/src/mintingAPI.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typescript/packages/wallets/crossmint/src/mintingAPI.ts b/typescript/packages/wallets/crossmint/src/mintingAPI.ts index 40f929974..bc2ff50f2 100644 --- a/typescript/packages/wallets/crossmint/src/mintingAPI.ts +++ b/typescript/packages/wallets/crossmint/src/mintingAPI.ts @@ -1,6 +1,6 @@ -import { z } from "zod"; -import type { Plugin, WalletClient } from "@goat-sdk/core"; import { randomUUID } from "node:crypto"; +import type { Plugin, WalletClient } from "@goat-sdk/core"; +import { z } from "zod"; export const mintingAPIFactory = ( apiKey: string,