Skip to content

Commit

Permalink
fix ' not escaped
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfcosta committed Jan 2, 2025
1 parent 056d16c commit 78fe70f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions apps/web/src/components/Tutorial.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,9 @@ export const OnboardingTutorial = () => {
description={
<>
<p>
Add a query block to a page, select the data source you've just
connected, and write your query.
{
"Add a query block to a page, select the data source you've just connected, and write your query."
}
</p>
<p>Then, press the run button to see the results.</p>
</>
Expand Down Expand Up @@ -176,10 +177,9 @@ export const OnboardingTutorial = () => {
<p>
Add a Python block, write some code, and press the run button.
</p>
<p>
Tip: you can manipulate query results with Python. Briefer puts
every query's result into variable containing a Pandas Data Frame.
</p>
{
"Tip: you can manipulate query results with Python. Briefer puts every query's result into variable containing a Pandas Data Frame."
}
</>
}
status={tutorialState.stepStates['runPython']}
Expand Down

0 comments on commit 78fe70f

Please sign in to comment.