Skip to content

Commit

Permalink
chore: lint-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tethik committed Nov 25, 2024
1 parent 7b83e5a commit dcb51cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/src/components/model/panels/bottom/BottomPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function BottomPanel() {
const successRatio =
validationResults.length === 0
? 0
: Number((passedResults.length / validationResults.length));
: Number(passedResults.length / validationResults.length);

if (tab === 0) {
// TAB.ALL
Expand Down
6 changes: 3 additions & 3 deletions app/src/components/model/tutorial/Tutorial.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ const CreateComponent = () => (
const ComponentTab = () => (
<>
<Typography>
When you select a component you'll notice the left panel changes to show the component tab.
When you select a component you'll notice the left panel changes to show
the component tab.
</Typography>
<Typography>
The component tab contain input fields for specifying component specific
Expand Down Expand Up @@ -642,8 +643,7 @@ const steps = [
body: ComponentSelection,
highlighted: ["#diagram-container"],
position: "flex-start",
nextCondition: (state) =>
!!state.selectedComponent,
nextCondition: (state) => !!state.selectedComponent,
},
{
title: "Right panel tabs",
Expand Down

0 comments on commit dcb51cc

Please sign in to comment.