Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeneTorap committed Jan 28, 2022
1 parent 4bd655a commit 7576bb2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
import React, { FC } from 'react';
import React from 'react';
import { ClassNames } from '@emotion/react';
import { styled, useTheme } from '@superset-ui/core';
import { Tooltip } from 'src/components/Tooltip';
Expand Down Expand Up @@ -75,7 +75,7 @@ interface ColumnElementProps {
};
}

const ColumnElement: FC<ColumnElementProps> = ({ column }) => {
const ColumnElement = ({ column }: ColumnElementProps) => {
let columnName: React.ReactNode = column.name;
let icons;
if (column.keys && column.keys.length > 0) {
Expand Down

0 comments on commit 7576bb2

Please sign in to comment.