Skip to content

Commit

Permalink
change defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
BoringBoredom committed Mar 7, 2024
1 parent 322afab commit b4e4933
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 73 deletions.
140 changes: 70 additions & 70 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function App() {
const [chartsPerRow, setChartsPerRow] = React.useState<number>(() => {
const chartsPerRowValue = localStorage.getItem("chartsPerRow");

let chartsPerRow = 1;
let chartsPerRow = 2;
if (chartsPerRowValue) {
chartsPerRow = parseInt(chartsPerRowValue, 10);
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/static.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export const initialChartTypes = [
{ name: "Line: Percentiles", show: true },
{ name: "Line: Lows", show: true },
{ name: "Box: FPS", show: true },
{ name: "Table: FPS", show: false },
{ name: "Bar: FPS", show: true },
{ name: "Table: FPS", show: true },
{ name: "Bar: FPS", show: false },
];

export const barMetrics = [
Expand Down

0 comments on commit b4e4933

Please sign in to comment.