Skip to content

Commit 23c6efe

Browse files
committed
fix format for prettier
1 parent e35a32d commit 23c6efe

File tree

8 files changed

+8
-10
lines changed

8 files changed

+8
-10
lines changed

src/Annotator/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type Props = {
5454
hideClone?: boolean,
5555
hideSettings?: boolean,
5656
hideFullScreen?: boolean,
57-
hideSave?: boolean
57+
hideSave?: boolean,
5858
}
5959

6060
export const Annotator = ({

src/DemoSite/Editor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import DialogContent from "@mui/material/DialogContent"
1212
import DialogActions from "@mui/material/DialogActions"
1313
import MonacoEditor from "react-monaco-editor"
1414

15-
const theme = createTheme();
15+
const theme = createTheme()
1616
const useStyles = makeStyles((theme) => ({
1717
editBar: {
1818
padding: 10,

src/MainLayout/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import { withHotKeys } from "react-hotkeys"
3535
// import Fullscreen from "../Fullscreen"
3636

3737
const emptyArr = []
38-
const theme = createTheme();
38+
const theme = createTheme()
3939
const useStyles = makeStyles((theme) => styles)
4040

4141
const HotkeyDiv = withHotKeys(({ hotKeys, children, divRef, ...props }) => (

src/PointDistances/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ import React, { Fragment } from "react"
44
import { styled } from "@mui/material/styles"
55
import { createTheme, ThemeProvider } from "@mui/material/styles"
66

7-
8-
const theme = createTheme();
7+
const theme = createTheme()
98
const Svg = styled("svg")(({ theme }) => ({
109
pointerEvents: "none",
1110
position: "absolute",

src/PreventScrollToParents/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { styled } from "@mui/material/styles"
66
import { createTheme, ThemeProvider } from "@mui/material/styles"
77
import useEventCallback from "use-event-callback"
88

9-
const theme = createTheme();
9+
const theme = createTheme()
1010
const Container = styled("div")(({ theme }) => ({
1111
"& > div": {
1212
width: "100%",

src/RegionLabel/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import CreatableSelect from "react-select/creatable"
1717

1818
import { asMutable } from "seamless-immutable"
1919

20-
const theme = createTheme();
21-
const useStyles = makeStyles((theme) => styles);
20+
const theme = createTheme()
21+
const useStyles = makeStyles((theme) => styles)
2222

2323
type Props = {
2424
region: Region,

src/SidebarBoxContainer/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import classnames from "classnames"
1212
import useEventCallback from "use-event-callback"
1313
import SidebarBox from "react-material-workspace-layout/SidebarBox"
1414

15-
const theme = createTheme();
15+
const theme = createTheme()
1616
const useStyles = makeStyles((theme) => ({
1717
container: { margin: 8 },
1818
header: {

src/TagsSidebarBox/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import Select from "react-select"
88
import useEventCallback from "use-event-callback"
99
import { asMutable } from "seamless-immutable"
1010

11-
1211
type Props = {
1312
tags: Array<string>,
1413
currentImage: { cls?: string, tags?: Array<string> },

0 commit comments

Comments
 (0)