Skip to content

Commit 38eb48e

Browse files
committed
Put prettier back
1 parent c46b615 commit 38eb48e

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

src/main/webapp/ui/.eslintrc

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
"plugin:react/recommended",
1616
"plugin:react-hooks/recommended",
1717
"plugin:jsx-a11y/recommended",
18+
"plugin:prettier/recommended",
19+
"prettier"
1820
],
1921
"plugins": ["react", "ft-flow", "testing-library", "jest-dom", "jsx-a11y"],
2022
"settings": {

src/main/webapp/ui/src/Inventory/components/ContextMenu/ContextDialog.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,13 @@ type ContextDialogArgs = {|
2121
fullWidth?: boolean,
2222
|};
2323

24-
export default function ContextDialog({ children, open, onClose, maxWidth, fullWidth }: ContextDialogArgs): Node {
24+
export default function ContextDialog({
25+
children,
26+
open,
27+
onClose,
28+
maxWidth,
29+
fullWidth,
30+
}: ContextDialogArgs): Node {
2531
const { uiStore } = useStores();
2632
const { classes } = useStyles();
2733

0 commit comments

Comments
 (0)