Skip to content
Snippets Groups Projects
Commit 4091b66e authored by Tom Robinson's avatar Tom Robinson
Browse files

Fix flow/lint

parent 0514a5ae
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,6 @@ import React, { Component } from "react";
import PropTypes from "prop-types";
import { connect } from "react-redux";
import title from "metabase/hoc/Title";
import cx from "classnames";
import { t } from "c-3po";
import MetabaseSettings from "metabase/lib/settings";
......@@ -16,8 +15,6 @@ import Breadcrumbs from "metabase/components/Breadcrumbs.jsx";
import Radio from "metabase/components/Radio.jsx";
import ModalWithTrigger from "metabase/components/ModalWithTrigger.jsx";
import colors from "metabase/lib/colors";
import {
getEditingDatabase,
getFormState,
......@@ -57,7 +54,7 @@ const mapDispatchToProps = {
};
type TabName = "connection" | "scheduling";
type TabOption = { name: TabName, value: string };
type TabOption = { name: string, value: TabName };
const TABS: TabOption[] = [
{ name: t`Connection`, value: "connection" },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment