remove dead code

This commit is contained in:
2025-10-19 13:29:41 -07:00
parent e42dc4ada6
commit d3106b9a99
2 changed files with 1 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
<head>
<title>Skiing - Aaron Gutierrez</title>
<link rel="stylesheet" href="site.css">
<meta charshet="utf-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>

View File

@@ -223,7 +223,4 @@ export class Root extends React.PureComponent<Props, State> {
return { gridHeights: newGridHeights };
});
};
private _getPreviousGridHeights = (grid: number): number =>
this.state.gridHeights.slice(0, grid).reduce((a, b) => a + b, 0);
}