change on comment

master
Reza_ashrafi 2 years ago
parent 1f0ee832db
commit fd38af9951
  1. 5
      App.js
  2. 2
      src/screens/Address/index.js
  3. 2
      src/screens/Blog/index.js
  4. 1
      src/screens/Product/index.js
  5. 1
      src/screens/Products/index.js

@ -39,11 +39,6 @@ const App = () => {
const onLayoutRootView = React.useCallback(async () => {
if (fontsLoaded) {
// This tells the splash screen to hide immediately! If we call this after
// `setAppIsReady`, then we may see a blank screen while the app is
// loading its initial state and rendering its first pixels. So instead,
// we hide the splash screen once we know the root view has already
// performed layout.
await SplashScreen.hideAsync();
}
}, [fontsLoaded]);

@ -335,8 +335,6 @@ const Address = ({
);
};
console.log(mapAddress);
return (
<SafeAreaView
style={{

@ -59,8 +59,6 @@ export const Blog = ({ getInfo, blog, getList, blogs, route, theme }) => {
);
}, [theme]);
console.log(blog);
return (
<SafeAreaView
style={{

@ -4,6 +4,7 @@ import {
StyleSheet,
Dimensions,
ScrollView,
KeyboardAvoidingView,
SafeAreaView,
StatusBar,
} from "react-native";

@ -31,7 +31,6 @@ function Products({
filterOptions,
}) {
const [position, setPosition] = useState("100%");
console.log(books);
useEffect(() => {
getBooks({ vod: true });
}, []);

Loading…
Cancel
Save