Skip to content

Commit 744920a

Browse files
committed
fix: fix build for type definitions
1 parent 6816ef7 commit 744920a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/context/FileContext.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
useEffect,
66
ReactNode,
77
} from "react";
8-
import { useRequest, QueryParam } from "./RequestContext";
8+
import { useRequest, QueryParam, Tab } from "./RequestContext";
99
import { useVariables } from "./VariablesContext";
1010

1111
type RequestData = {
@@ -17,7 +17,7 @@ type RequestData = {
1717
username?: string;
1818
password?: string;
1919
bearerToken?: string;
20-
activeTab?: "body" | "auth" | "params" | "graphql" | "variables" | "description";
20+
activeTab?: Tab;
2121
queryParams?: QueryParam[];
2222
requestType?: "http" | "graphql";
2323
graphqlQuery?: string;

0 commit comments

Comments
 (0)