fix: debug
This commit is contained in:
parent
a9e33154a7
commit
88c7bf5ec5
|
@ -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}>
|
||||
|
|
Loading…
Reference in New Issue