Skip to content

Commit c5f70fe

Browse files
committed
lint
1 parent 0436f4f commit c5f70fe

13 files changed

Lines changed: 21 additions & 21 deletions

src/components/LayerController/AddChannelButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Divider, IconButton, NativeSelect, Paper, Popover, Typography } from "@mui/material";
21
import { Add } from "@mui/icons-material";
2+
import { Divider, IconButton, NativeSelect, Paper, Popover, Typography } from "@mui/material";
33
import React, { useState } from "react";
44
import type { ChangeEvent, MouseEvent } from "react";
55

src/components/LayerController/AxisOptions.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { Divider, IconButton, Input, Paper, Popover, Typography } from "@mui/material";
21
import { MoreHoriz } from "@mui/icons-material";
2+
import { Divider, IconButton, Input, Paper, Popover, Typography } from "@mui/material";
3+
import { styled } from "@mui/material/styles";
34
import React, { useState } from "react";
45
import type { ChangeEvent, MouseEvent } from "react";
56
import { useLayerState, useSourceData } from "../../hooks";
6-
import { styled } from "@mui/material/styles";
77

88
const DenseInput = styled(Input)`
99
width: 5.5em;

src/components/LayerController/AxisSlider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Divider, Grid, Typography, Slider } from "@mui/material";
1+
import { Divider, Grid, Slider, Typography } from "@mui/material";
22
import { styled } from "@mui/material/styles";
33
import * as React from "react";
44
import { useLayerState, useSourceData } from "../../hooks";

src/components/LayerController/ChannelController.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Grid, IconButton, Slider, Typography } from "@mui/material";
21
import { RadioButtonChecked, RadioButtonUnchecked } from "@mui/icons-material";
2+
import { Grid, IconButton, Slider, Typography } from "@mui/material";
33
import React from "react";
44
import { useLayerState, useSourceData } from "../../hooks";
55
import ChannelOptions from "./ChannelOptions";

src/components/LayerController/ChannelOptions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Divider, IconButton, Input, NativeSelect, Paper, Popover, Typography } from "@mui/material";
21
import { MoreHoriz, Remove } from "@mui/icons-material";
2+
import { Divider, IconButton, Input, NativeSelect, Paper, Popover, Typography } from "@mui/material";
33
import { styled } from "@mui/material/styles";
44
import React, { useState } from "react";
55
import type { ChangeEvent, MouseEvent } from "react";

src/components/LayerController/ColorPalette.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Container, IconButton } from "@mui/material";
21
import { Lens } from "@mui/icons-material";
2+
import { Container, IconButton } from "@mui/material";
33
import React from "react";
44
import { COLORS, hexToRGB } from "../../utils";
55

src/components/LayerController/Labels.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Grid, IconButton, Slider, Typography } from "@mui/material";
21
import { RadioButtonChecked, RadioButtonUnchecked } from "@mui/icons-material";
2+
import { Grid, IconButton, Slider, Typography } from "@mui/material";
33
import React from "react";
44

55
import { useLayerState, useSourceData } from "../../hooks";

src/components/LayerController/LayerFitToViewportButton.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1+
import { ZoomOutMap } from "@mui/icons-material";
2+
import { IconButton } from "@mui/material";
13
import { useAtomValue } from "jotai";
24
import { useLayerState, useSourceData, useViewState } from "../../hooks";
5+
import { type VizarrLayer, viewportAtom } from "../../state";
36
import { fitImageToViewport, getLayerSize } from "../../utils";
4-
import { viewportAtom, type VizarrLayer } from "../../state";
5-
import { IconButton } from "@mui/material";
6-
import { ZoomOutMap } from "@mui/icons-material";
77

88
export function LayerFitToViewportButton() {
99
const [sourceData] = useSourceData();

src/components/LayerController/LayerVisibilityButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { IconButton } from "@mui/material";
21
import { Visibility, VisibilityOff } from "@mui/icons-material";
2+
import { IconButton } from "@mui/material";
33
import React from "react";
44
import type { MouseEvent } from "react";
55
import { useLayerState, useSourceData } from "../../hooks";

src/components/Menu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Box, Grid, IconButton } from "@mui/material";
21
import { Add, Remove } from "@mui/icons-material";
2+
import { Box, Grid, IconButton } from "@mui/material";
33
import { useAtomValue } from "jotai";
44
import React, { useReducer } from "react";
55

0 commit comments

Comments
 (0)