From 1a4fc1f539bda26f9b8387c4d3a116e104ac0cde Mon Sep 17 00:00:00 2001 From: Andrew Bastin Date: Sun, 22 Aug 2021 13:06:19 +0530 Subject: [PATCH] feat: remove authName from HoppRESTAuth type definitions --- components/http/Authorization.vue | 14 +++++++------- components/http/ImportCurl.vue | 1 - helpers/types/HoppRESTAuth.ts | 8 ++------ helpers/types/HoppRESTRequest.ts | 5 +---- newstore/RESTSession.ts | 3 +-- 5 files changed, 11 insertions(+), 20 deletions(-) diff --git a/components/http/Authorization.vue b/components/http/Authorization.vue index 2213764e4..1139b8a17 100644 --- a/components/http/Authorization.vue +++ b/components/http/Authorization.vue @@ -36,7 +36,6 @@ label="None" @click.native=" authType = 'none' - authName = 'None' $refs.authTypeOptions.tippy().hide() " /> @@ -44,7 +43,6 @@ label="Basic Auth" @click.native=" authType = 'basic' - authName = 'Basic Auth' $refs.authTypeOptions.tippy().hide() " /> @@ -52,7 +50,6 @@ label="Bearer Token" @click.native=" authType = 'bearer' - authName = 'Bearer Token' $refs.authTypeOptions.tippy().hide() " /> @@ -174,7 +171,7 @@