From d3106b9a995c4499ff8158eae353a794ca513165 Mon Sep 17 00:00:00 2001 From: Aaron Gutierrez Date: Sun, 19 Oct 2025 13:29:41 -0700 Subject: [PATCH] remove dead code --- index.html | 2 +- src/components/root.tsx | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/index.html b/index.html index 8db4df7..2085adf 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ Skiing - Aaron Gutierrez - + diff --git a/src/components/root.tsx b/src/components/root.tsx index 5993db9..792e353 100644 --- a/src/components/root.tsx +++ b/src/components/root.tsx @@ -223,7 +223,4 @@ export class Root extends React.PureComponent { return { gridHeights: newGridHeights }; }); }; - - private _getPreviousGridHeights = (grid: number): number => - this.state.gridHeights.slice(0, grid).reduce((a, b) => a + b, 0); }