From 605e281ff9e00c932da8b3992e1b4db697d2f621 Mon Sep 17 00:00:00 2001 From: David Aaron Suddjian Date: Mon, 14 Mar 2022 16:45:55 -0700 Subject: [PATCH] sort --- .../packages/superset-ui-core/src/connection/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/packages/superset-ui-core/src/connection/types.ts b/superset-frontend/packages/superset-ui-core/src/connection/types.ts index 004fb59e8c314..0ab382917e170 100644 --- a/superset-frontend/packages/superset-ui-core/src/connection/types.ts +++ b/superset-frontend/packages/superset-ui-core/src/connection/types.ts @@ -81,6 +81,7 @@ export interface RequestBase { fetchRetryOptions?: FetchRetryOptions; headers?: Headers; host?: Host; + ignoreUnauthorized?: boolean; mode?: Mode; method?: Method; jsonPayload?: Payload; @@ -89,7 +90,6 @@ export interface RequestBase { signal?: Signal; stringify?: Stringify; timeout?: ClientTimeout; - ignoreUnauthorized?: boolean; } export interface CallApi extends RequestBase {