Skip to content

Commit 4861a0d

Browse files
author
Megha Narayanan
committed
fix lint
1 parent 5786485 commit 4861a0d

File tree

1 file changed

+4
-2
lines changed
  • packages/cli/src/commands/sandbox/sandbox-devtools/react-app/src/components

1 file changed

+4
-2
lines changed

packages/cli/src/commands/sandbox/sandbox-devtools/react-app/src/components/Header.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,10 @@ const Header = ({
101101
};
102102

103103
const getSandboxStatusIndicator = () => {
104-
const statusText = sandboxIdentifier && sandboxStatus !== 'nonexistent' ?
105-
`Sandbox (${sandboxIdentifier})` : 'Sandbox';
104+
const statusText =
105+
sandboxIdentifier && sandboxStatus !== 'nonexistent'
106+
? `Sandbox (${sandboxIdentifier})`
107+
: 'Sandbox';
106108

107109
switch (sandboxStatus) {
108110
case 'running':

0 commit comments

Comments
 (0)