Skip to content

Commit ada578a

Browse files
committed
Remove extra logging.
1 parent ad44d48 commit ada578a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

components/get-location.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,11 @@ export default function GetLocation({ tileDetails, setTileDetails }: {
4444

4545
const alwaysUseLocationRef = useRef<HTMLInputElement>(null);
4646
const focusAlwaysUseLocationRef = useCallback(() => {
47-
console.log("Focusing", alwaysUseLocationRef.current);
4847
alwaysUseLocationRef.current?.focus();
4948
}, []);
5049

5150
const addressRef = useRef<HTMLInputElement>(null);
5251
const focusAddressRef = useCallback(() => {
53-
console.log("Focusing", addressRef.current);
5452
addressRef.current?.focus();
5553
}, []);
5654

0 commit comments

Comments
 (0)