Skip to content

Commit

Permalink
Enable prettier autoformat
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffxy committed Mar 10, 2024
1 parent d52173e commit 8d86c8b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ui/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist
node_modules
__pycache__
2 changes: 1 addition & 1 deletion ui/src/components/PerfView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function PerfView({ metricsData }) {
yLabel="p90 Latency (s)"
/>
</div>
<div style={{"marginTop": "30px"}}>
<div style={{ marginTop: "30px" }}>
<h2>Transaction Latency</h2>
<LatencyPlot
seriesName="Transaction Latency"
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/TableView.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "./styles/TableView.css";

function WriterMarker({color}) {
function WriterMarker({ color }) {
return <div class={`db-table-view-writer ${color}`}>W</div>;
}

Expand Down

0 comments on commit 8d86c8b

Please sign in to comment.