Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
- fix another import
Browse files Browse the repository at this point in the history
  • Loading branch information
sasklacz committed Jul 16, 2024
1 parent 955c6ac commit b51931d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ConfigEditor/Auth/Auth.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { css } from '@emotion/css';
import { AuthMethod, DefaultAuthMethod, CustomMethod, CustomMethodId } from './types';
import { AuthMethod, AuthMethodSelectOption, CustomMethod, CustomMethodId } from './types';
import { AuthMethodSettings } from './auth-method/AuthMethodSettings';
import { TLSSettings, Props as TLSSettingsProps } from './tls/TLSSettings';
import { Props as BasicAuthProps } from './auth-method/BasicAuth';
Expand All @@ -11,7 +11,7 @@ export type Props = {
selectedMethod: AuthMethod | CustomMethodId;
mostCommonMethod?: AuthMethod | CustomMethodId;
visibleMethods?: Array<AuthMethod | CustomMethodId>;
defaultOptionsOverrides?: Partial<Record<AuthMethod, DefaultAuthMethod>>;
defaultOptionsOverrides?: Partial<Record<AuthMethod, AuthMethodSelectOption>>;
customMethods?: CustomMethod[];
onAuthMethodSelect: (authType: AuthMethod | CustomMethodId) => void;
basicAuth?: Omit<BasicAuthProps, 'readOnly'>;
Expand Down

0 comments on commit b51931d

Please sign in to comment.