fix: debug

This commit is contained in:
Derrick Hammer 2023-10-16 18:29:41 -04:00
parent a9e33154a7
commit 88c7bf5ec5
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 4 additions and 2 deletions

View File

@ -161,7 +161,6 @@ export function Navigator() {
}, [contextUrl]);
const NavInput = forwardRef((props: any, ref) => {
debugger;
return <Input ref={ref} {...props}></Input>;
});
@ -171,7 +170,10 @@ export function Navigator() {
<>
<NavInput
value={inputValue}
onChange={(e: any) => setInputValue(e.target.value)}
onChange={(e: any) => {
debugger;
setInputValue(e.target.value);
}}
disabled={!isLoggedIn}
/>
<Button onClick={browse} disabled={!isLoggedIn}>