fix(terminal): rename height -> rows

This commit is contained in:
Pihkaal
2024-01-25 20:38:42 +01:00
parent 059d1dfe42
commit 089c29b579
3 changed files with 6 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
import { createContext, useContext } from "react";
const TerminalContext = createContext<{ cols: number; height: number } | null>(
const TerminalContext = createContext<{ cols: number; rows: number } | null>(
null,
);