From 4bddc3f3b5c936ad7403b1c114d9c31c8ea02b4d Mon Sep 17 00:00:00 2001 From: Missing-Texture Date: Wed, 3 Nov 2021 00:06:48 +0100 Subject: [PATCH] updated app version to 1.3.0 --- app.json | 6 +++--- src/AstronomyFooter.tsx | 21 ++++++++++----------- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/app.json b/app.json index 07b0855..82ff5c2 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "WttrApp", "slug": "WttrApp", - "version": "1.2.3", + "version": "1.3.0", "orientation": "portrait", "icon": "./assets/icon.png", "splash": { @@ -18,12 +18,12 @@ ], "ios": { "bundleIdentifier": "in.wttr.app", - "buildNumber": "1.2.3", + "buildNumber": "1.3.0", "supportsTablet": true }, "android": { "package": "in.wttr.app", - "versionCode": 10203, + "versionCode": 10300, "adaptiveIcon": { "foregroundImage": "./assets/adaptive-icon.png", "backgroundColor": "#FFFFFF" diff --git a/src/AstronomyFooter.tsx b/src/AstronomyFooter.tsx index b2c63e4..7bff93a 100644 --- a/src/AstronomyFooter.tsx +++ b/src/AstronomyFooter.tsx @@ -3,7 +3,6 @@ import { Box, Text, HStack, Center } from 'native-base' import moment from 'moment' import { IData } from './Interfaces' -import { right } from 'styled-system' export default function AstronomyFooter( @@ -12,17 +11,17 @@ export default function AstronomyFooter( ) { return( <> - - - Sunrise: - {convertToTime24(data.sunrise)} - - - - Sunset: - {convertToTime24(data.sunset)} - + + + Sunrise: + {convertToTime24(data.sunrise)} + + + Sunset: + {convertToTime24(data.sunset)} + + ) }