From 6c39ada987a429a8f0013dfc9d0a0e8c459e4d75 Mon Sep 17 00:00:00 2001 From: Adam Macumber Date: Tue, 15 Sep 2020 15:40:45 -0400 Subject: [PATCH] fix: Use ./ notation for local import. --- src/use-upload.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/use-upload.tsx b/src/use-upload.tsx index 22f4279..a4c1610 100644 --- a/src/use-upload.tsx +++ b/src/use-upload.tsx @@ -10,7 +10,7 @@ import { } from './upload-reducer'; import { XHRClient, XHROptions, createXhrClient } from './clients/xhr'; import { FileOrFileList } from './'; -import { GraphQLClient, GraphQLOptions } from 'clients/graphql'; +import { GraphQLClient, GraphQLOptions } from './clients/graphql'; type HookProps = { files: File | FileList;