a11y
All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m36s

This commit is contained in:
2025-06-12 16:16:38 -06:00
parent 2ad6585a07
commit df33b94e38
12 changed files with 284 additions and 336 deletions

View File

@ -36,12 +36,6 @@ const Terminal = () => {
}
}, [commandHistory]);
useEffect(() => {
if (inputRef.current) {
inputRef.current.focus();
}
}, []);
// Load command history from localStorage
useEffect(() => {
const history = loadCommandHistory();
@ -219,7 +213,6 @@ __/ =| o |=-O=====O=====O=====O \\ ____Y___________|__|_________________________
}
onKeyDown={handleKeyDown}
className="flex-1 bg-transparent border-none outline-none text-accent ml-1"
autoFocus
spellcheck={false}
/>
</form>