diff --git a/src/components/AnimatedContainer/AnimatedContainer.tsx b/src/components/AnimatedContainer/AnimatedContainer.tsx
index 91f6bfb..4c8667a 100644
--- a/src/components/AnimatedContainer/AnimatedContainer.tsx
+++ b/src/components/AnimatedContainer/AnimatedContainer.tsx
@@ -9,22 +9,34 @@ export interface props {
export default function AnimatedContainer(props: props) {
return (
-
-
- {props.children}
-
-
+
+ {props.children}
+
);
}
diff --git a/src/routes/Home/Home.tsx b/src/routes/Home/Home.tsx
index f8f409a..5375e58 100644
--- a/src/routes/Home/Home.tsx
+++ b/src/routes/Home/Home.tsx
@@ -47,7 +47,7 @@ export default function Home() {
};
function CustomMap() {
if (dist !== null && location !== null) {
- if (dist <= 1) {
+ if (dist >= 1) {
// Just switch this condition for map debugging
return ;
} else {
diff --git a/src/styles.tsx b/src/styles.tsx
index f4d8f5d..e528322 100644
--- a/src/styles.tsx
+++ b/src/styles.tsx
@@ -39,7 +39,7 @@ const styles = StyleSheet.create({
marginVertical: "5%",
width: "92%",
borderRadius: 15,
- backgroundColor: colors.blue_2,
+ // backgroundColor: colors.blue_2,
alignItems: "center",
alignSelf: "center",
paddingTop: 32,