Skip to content

Commit 0b477de

Browse files
committed
style: fix lints
Signed-off-by: Chapman Pendery <cpendery@vt.edu>
1 parent bee4577 commit 0b477de

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/ui/ui-root.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,7 @@ const _direction = (term: ISTerm): "above" | "below" => {
7171
};
7272

7373
export const render = async (program: Command, shell: Shell, underTest: boolean, login: boolean) => {
74-
const [isterm, { SuggestionManager }] = await Promise.all([
75-
import("../isterm/index.js"),
76-
import("./suggestionManager.js"),
77-
]);
74+
const [isterm, { SuggestionManager }] = await Promise.all([import("../isterm/index.js"), import("./suggestionManager.js")]);
7875
const term = await isterm.default.spawn(program, { shell, rows: process.stdout.rows, cols: process.stdout.columns, underTest, login });
7976
const suggestionManager = new SuggestionManager(term, shell);
8077
let hasSuggestion = false;

0 commit comments

Comments
 (0)