removed console.log
This commit is contained in:
committed by
GitHub
parent
fba9c66389
commit
bf66181b70
@@ -144,8 +144,6 @@ const Home = () => {
|
|||||||
}) => {
|
}) => {
|
||||||
setDestinationLocation(location);
|
setDestinationLocation(location);
|
||||||
|
|
||||||
console.log("Hello World!");
|
|
||||||
|
|
||||||
router.push("/(root)/find-ride");
|
router.push("/(root)/find-ride");
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,6 @@ export const GoogleTextInput = ({
|
|||||||
}: GoogleInputProps) => {
|
}: GoogleInputProps) => {
|
||||||
const googlePlacesApiKey = process.env.EXPO_PUBLIC_GOOGLE_API_KEY!;
|
const googlePlacesApiKey = process.env.EXPO_PUBLIC_GOOGLE_API_KEY!;
|
||||||
|
|
||||||
console.log(googlePlacesApiKey);
|
|
||||||
return (
|
return (
|
||||||
<View
|
<View
|
||||||
className={`flex flex-row items-center justify-center relative z-50 rounded-xl ${containerStyles}`}
|
className={`flex flex-row items-center justify-center relative z-50 rounded-xl ${containerStyles}`}
|
||||||
@@ -77,7 +76,6 @@ export const GoogleTextInput = ({
|
|||||||
placeholderTextColor: "gray",
|
placeholderTextColor: "gray",
|
||||||
placeholder: initialLocation ?? "Where do you want to go?",
|
placeholder: initialLocation ?? "Where do you want to go?",
|
||||||
}}
|
}}
|
||||||
onFail={console.log}
|
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user