removed console.log

This commit is contained in:
Sanidhya Kumar Verma
2024-08-30 15:21:39 +00:00
committed by GitHub
parent fba9c66389
commit bf66181b70
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -144,8 +144,6 @@ const Home = () => {
}) => { }) => {
setDestinationLocation(location); setDestinationLocation(location);
console.log("Hello World!");
router.push("/(root)/find-ride"); router.push("/(root)/find-ride");
}; };
-2
View File
@@ -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>
); );