Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Phelps <[email protected]>
  • Loading branch information
markphelps committed Nov 19, 2024
1 parent b422e0e commit 9a4976a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ui/src/components/node.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTitle
} from '@/components/ui/dialog';
import { Button } from '@/components/ui/button';
import { useState } from 'react';
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/pipeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ function getElements(pipeline: PipelineType): FlowPipeline {
depends_on: phase.depends_on,
source_type: phase.source_type,
value: phase.value
},
},
extent: 'parent'
};
nodes.push(node);
Expand Down
4 changes: 1 addition & 3 deletions ui/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@ import { App } from './App';

const container = document.getElementById('app') as HTMLElement;
const root = createRoot(container);
root.render(
<App />
);
root.render(<App />);

0 comments on commit 9a4976a

Please sign in to comment.