Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
joepio committed Jan 9, 2024
1 parent bb690f4 commit 75c15e0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion browser/data-browser/src/components/ProgressBar.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import styled from 'styled-components';
import { styled } from 'styled-components';

interface ProgressBarProps {
value: number;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { JSONValue, collections, core } from '@tomic/react';
import { collections, core } from '@tomic/react';
import { useState, useCallback, FormEvent, useEffect, FC } from 'react';
import { Button } from '../../../../Button';
import {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useResource, Core, dataBrowser, core, useStore } from '@tomic/react';
import { useState, useCallback, useEffect, FormEvent, FC } from 'react';
import styled from 'styled-components';
import { styled } from 'styled-components';
import { stringToSlug } from '../../../../../helpers/stringToSlug';
import { BetaBadge } from '../../../../BetaBadge';
import { Button } from '../../../../Button';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { FaInfo } from 'react-icons/fa';
import { AtomicLink } from '../../AtomicLink';
import Markdown from '../../datatypes/Markdown';
import { Column, Row } from '../../Row';
import styled from 'styled-components';
import { styled } from 'styled-components';
import { IconButton, IconButtonVariant } from '../../IconButton/IconButton';

export enum NewFormTitleVariant {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { PropsWithChildren } from 'react';
import { Row } from '../../components/Row';
import styled from 'styled-components';
import { styled } from 'styled-components';

interface ButtonSectionProps {
title: string;
Expand Down

0 comments on commit 75c15e0

Please sign in to comment.