Skip to content

Commit

Permalink
refactor: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
abrgr committed Sep 19, 2023
1 parent c7e755a commit 1d151a4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/svg-flow-graph/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,11 @@ export const SvgFlowGraph = ({ fullFlow, layout }: SvgFlowGraphProps) => {
);

return (
<svg width={rootPos?.width} height={rootPos?.height} xmlns="http://www.w3.org/2000/svg">
<svg
width={rootPos?.width}
height={rootPos?.height}
xmlns="http://www.w3.org/2000/svg"
>
{topLevelStates.map(([stateId, state]) => (
<StateNode
key={stateId}
Expand Down

0 comments on commit 1d151a4

Please sign in to comment.