fix(terminal): rename height -> rows
This commit is contained in:
@@ -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,
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user