Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
interim17 committed Jan 13, 2025
1 parent 28f6748 commit d8c3d9b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/FileUploadModal/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Button, Form, Tabs } from "antd";
import { Form, Tabs } from "antd";
import { RcFile } from "antd/lib/upload";
import React, { useState } from "react";
import { ActionCreator } from "redux";
Expand Down
2 changes: 1 addition & 1 deletion src/components/ShareTrajectoryModal/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import { connect } from "react-redux";
import { Button, Input, Radio, RadioChangeEvent, Space } from "antd";
import { Input, Radio, RadioChangeEvent, Space } from "antd";
import classNames from "classnames";

import { State } from "../../state/types";
Expand Down
2 changes: 1 addition & 1 deletion src/containers/ConversionForm/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useEffect, useState } from "react";
import { ActionCreator } from "redux";
import { connect } from "react-redux";
import { Upload, Select, Divider, Button, Input } from "antd";
import { Upload, Select, Divider, Input } from "antd";
import { UploadFile } from "antd/lib/upload";
import { v4 as uuidv4 } from "uuid";
import classNames from "classnames";
Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "core-js/es6/set";
import React, { useEffect } from "react";
import { createRoot } from "react-dom/client";
import { Provider, useDispatch, batch } from "react-redux";
import { ConfigProvider, Layout } from "antd";
import { Layout } from "antd";
import { BrowserRouter, Switch, Route, useLocation } from "react-router-dom";

import { APP_ID } from "./constants";
Expand Down

0 comments on commit d8c3d9b

Please sign in to comment.