fix: debug

This commit is contained in:
Derrick Hammer 2023-10-16 18:20:10 -04:00
parent 77c5473bd7
commit a9e33154a7
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 4 additions and 3 deletions

View File

@ -160,9 +160,10 @@ export function Navigator() {
setInputValue(contextUrl); // Update local state when context's url changes
}, [contextUrl]);
const NavInput = forwardRef((props: any, ref) => (
<Input ref={ref} {...props}></Input>
));
const NavInput = forwardRef((props: any, ref) => {
debugger;
return <Input ref={ref} {...props}></Input>;
});
console.log("Navigator mounted");