From 1e96c76bebcc320c495ee136702dba1da90a949b Mon Sep 17 00:00:00 2001 From: Ryan Ghods Date: Wed, 26 Jul 2023 10:51:32 -0700 Subject: [PATCH] Fix ProtocolData import path in src/api/types.ts (#1122) --- src/api/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/types.ts b/src/api/types.ts index c886f70ac..4160ab423 100644 --- a/src/api/types.ts +++ b/src/api/types.ts @@ -1,5 +1,5 @@ import { ConsiderationItem } from "@opensea/seaport-js/lib/types"; -import { ProtocolData } from "src/orders/types"; +import { ProtocolData } from "../orders/types"; export type BuildOfferResponse = { partialParameters: PartialParameters;