Skip to content

Commit

Permalink
Sorted imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ajmcquilkin committed Jan 7, 2024
1 parent 233538f commit 5187625
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions src/components/Map/CreateWaypointDialog.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
import data from "@emoji-mart/data";
import Picker from "@emoji-mart/react";
import * as Dialog from "@radix-ui/react-dialog";
import {
CheckIcon,
ChevronDownIcon,
ChevronUpIcon,
Cross2Icon,
} from "@radix-ui/react-icons";
import * as Popover from "@radix-ui/react-popover";
import * as Select from "@radix-ui/react-select";
import debounce from "lodash.debounce";
import { Locate, Plus, X } from "lucide-react";
import maplibregl from "maplibre-gl";
import moment from "moment";
import { ChangeEventHandler, useMemo, useRef, useState } from "react";
import { useTranslation } from "react-i18next";
import {
Expand All @@ -12,19 +25,6 @@ import {
useMap,
} from "react-map-gl";
import { useDispatch, useSelector } from "react-redux";
import data from "@emoji-mart/data";
import Picker from "@emoji-mart/react";
import * as Dialog from "@radix-ui/react-dialog";
import {
CheckIcon,
ChevronDownIcon,
ChevronUpIcon,
Cross2Icon,
} from "@radix-ui/react-icons";
import * as Popover from "@radix-ui/react-popover";
import * as Select from "@radix-ui/react-select";
import { Locate, Plus, X } from "lucide-react";
import moment from "moment";

import type { app_device_NormalizedWaypoint } from "@bindings/index";

Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/ManageNodePage.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { ColumnDef } from "@tanstack/react-table";
import { useMemo } from "react";
import { useTranslation } from "react-i18next";
import { useSelector } from "react-redux";
import TimeAgo from "timeago-react";
import { useTranslation } from "react-i18next";

import type { app_device_MeshNode } from "@bindings/index";

Expand Down

0 comments on commit 5187625

Please sign in to comment.