Skip to content

Commit 17437eb

Browse files
committed
run prettier
1 parent 4c3a38c commit 17437eb

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel.tsx

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ export function DevToolsPanel({
4949
}}
5050
>
5151
{/* TODO: Investigate why onClose on Dialog doesn't close when clicked outside. */}
52-
<OverlayBackdrop data-nextjs-devtools-panel-overlay-backdrop onClick={onClose} />
52+
<OverlayBackdrop
53+
data-nextjs-devtools-panel-overlay-backdrop
54+
onClick={onClose}
55+
/>
5356
<Draggable
5457
padding={INDICATOR_PADDING}
5558
onDragStart={() => {}}
@@ -59,17 +62,17 @@ export function DevToolsPanel({
5962
setPosition(p)
6063
}}
6164
>
62-
<Dialog
63-
data-nextjs-devtools-panel-dialog
64-
aria-labelledby="nextjs__container_dev_tools_panel_label"
65-
aria-describedby="nextjs__container_dev_tools_panel_desc"
66-
onClose={onClose}
67-
>
68-
<DialogContent>
69-
<DialogHeader></DialogHeader>
70-
<DialogBody></DialogBody>
71-
</DialogContent>
72-
</Dialog>
65+
<Dialog
66+
data-nextjs-devtools-panel-dialog
67+
aria-labelledby="nextjs__container_dev_tools_panel_label"
68+
aria-describedby="nextjs__container_dev_tools_panel_desc"
69+
onClose={onClose}
70+
>
71+
<DialogContent>
72+
<DialogHeader></DialogHeader>
73+
<DialogBody></DialogBody>
74+
</DialogContent>
75+
</Dialog>
7376
</Draggable>
7477
</Overlay>
7578
)

0 commit comments

Comments
 (0)