1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix typo in terminalSpawningPool

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-05-05 08:39:44 -04:00
parent 808e51bdcf
commit 627baf9ddf

View File

@ -10,7 +10,7 @@ const terminalSpawningPoolInjectable = getInjectable({
instantiate: () => { instantiate: () => {
const pool = document.getElementById("terminal-init"); const pool = document.getElementById("terminal-init");
assert(pool, "DOM MUST container #terminal-init element"); assert(pool, "DOM MUST contain #terminal-init element");
return pool; return pool;
}, },