From c9adaf59ffb91fbbb1a50ca8bf30e85fd12830f2 Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Wed, 16 Nov 2022 18:48:16 +1300 Subject: [PATCH] Remove confusing add workout button from plan --- EditPlan.tsx | 35 ++++++++++++----------------------- 1 file changed, 12 insertions(+), 23 deletions(-) diff --git a/EditPlan.tsx b/EditPlan.tsx index c86a374..ec4c958 100644 --- a/EditPlan.tsx +++ b/EditPlan.tsx @@ -102,29 +102,15 @@ export default function EditPlan() { )) )} - {names.length === 0 ? ( - - ) : ( - - )} + + ) @@ -135,4 +121,7 @@ const styles = StyleSheet.create({ fontSize: 20, marginBottom: MARGIN, }, + button: { + margin: MARGIN * 2, + }, })