Skip to content

Commit

Permalink
remove default
Browse files Browse the repository at this point in the history
  • Loading branch information
hughhhh committed Feb 17, 2021
1 parent bd45793 commit 6545601
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ interface RootState {
}

const DEFAULT_TAB_KEY = '1';
const DEFAULT_SQLALCHEMY_DOCS_URL =
'https://docs.sqlalchemy.org/en/rel_1_2/core/engines.html#';

const StyledIcon = styled(Icon)`
margin: auto ${({ theme }) => theme.gridUnit * 2}px auto 0;
`;
Expand Down Expand Up @@ -416,7 +413,7 @@ const DatabaseModal: FunctionComponent<DatabaseModalProps> = ({
<div className="helper">
{t('Refer to the ')}
<a
href={conf?.SQLALCHEMY_DOCS_URL ?? DEFAULT_SQLALCHEMY_DOCS_URL}
href={conf?.SQLALCHEMY_DOCS_URL ?? ''}
target="_blank"
rel="noopener noreferrer"
>
Expand Down

0 comments on commit 6545601

Please sign in to comment.