Skip to content

Commit ce1886c

Browse files
committed
Fix wording of modal
1 parent 1dde529 commit ce1886c

File tree

1 file changed

+2
-2
lines changed
  • packages/app/src/app/pages/common/Modals/LiveSessionEnded

1 file changed

+2
-2
lines changed

packages/app/src/app/pages/common/Modals/LiveSessionEnded/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ import { Heading, Explanation } from '../elements';
99

1010
function LiveModeEnded({ signals, store }) {
1111
const suggestion = store.editor.currentSandbox.owned
12-
? 'You can continue working on the current sandbox.'
12+
? 'you can continue working on the current sandbox.'
1313
: 'you can continue working by forking the sandbox or by creating a new sandbox.';
1414
return (
1515
<Container>
1616
<Heading>The live session has ended</Heading>
1717
<Explanation css={{ marginBottom: '1rem' }}>
1818
{store.currentModalMessage || 'The session has ended due to inactivity'}
19-
,{suggestion}
19+
, {suggestion}
2020
</Explanation>
2121

2222
<Row justifyContent="space-around">

0 commit comments

Comments
 (0)