From 631279044386ce22389bd542f3998edffa114649 Mon Sep 17 00:00:00 2001 From: Bryan Joseph Date: Wed, 24 May 2023 11:15:08 -0700 Subject: [PATCH 1/3] Update BaseToast.styles.ts --- src/components/BaseToast.styles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/BaseToast.styles.ts b/src/components/BaseToast.styles.ts index cf2a62835..1a7c5b37e 100644 --- a/src/components/BaseToast.styles.ts +++ b/src/components/BaseToast.styles.ts @@ -7,8 +7,8 @@ export const BORDER_RADIUS = 6; export const styles = StyleSheet.create({ base: { flexDirection: 'row', - height: HEIGHT, - width: WIDTH, + // height: HEIGHT, + // width: WIDTH, borderRadius: BORDER_RADIUS, shadowOffset: { width: 0, height: 0 }, shadowOpacity: 0.1, From e196caa1702ec8bb9a75c8cd9456e450da2cf7ea Mon Sep 17 00:00:00 2001 From: Bryan Joseph Date: Wed, 24 May 2023 11:15:37 -0700 Subject: [PATCH 2/3] remove comments --- src/components/BaseToast.styles.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/BaseToast.styles.ts b/src/components/BaseToast.styles.ts index 1a7c5b37e..53de6f328 100644 --- a/src/components/BaseToast.styles.ts +++ b/src/components/BaseToast.styles.ts @@ -7,8 +7,6 @@ export const BORDER_RADIUS = 6; export const styles = StyleSheet.create({ base: { flexDirection: 'row', - // height: HEIGHT, - // width: WIDTH, borderRadius: BORDER_RADIUS, shadowOffset: { width: 0, height: 0 }, shadowOpacity: 0.1, From 608340c5fd3abb4d95ff2d361615f474ffe222fa Mon Sep 17 00:00:00 2001 From: Bryan Joseph Date: Wed, 24 May 2023 11:17:32 -0700 Subject: [PATCH 3/3] Update BaseToast.styles.ts --- src/components/BaseToast.styles.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/BaseToast.styles.ts b/src/components/BaseToast.styles.ts index 53de6f328..4e2068daf 100644 --- a/src/components/BaseToast.styles.ts +++ b/src/components/BaseToast.styles.ts @@ -1,7 +1,5 @@ import { StyleSheet } from 'react-native'; -export const HEIGHT = 60; -export const WIDTH = 340; export const BORDER_RADIUS = 6; export const styles = StyleSheet.create({