From 9cc1b1a05e002f992873c7949ffd2519f651baa0 Mon Sep 17 00:00:00 2001 From: Aditya Pawar <34043950+adityapawar1@users.noreply.github.com> Date: Thu, 18 Apr 2024 21:34:15 -0700 Subject: [PATCH] [bug] Bug bash changes (#86) * Bug bash changes * Change link back to login --- src/app/(tabs)/story/index.tsx | 39 ++++++++++++++++++++++-------- src/app/auth/onboarding/index.tsx | 13 ++++++++++ src/app/auth/onboarding/styles.tsx | 4 +++ src/app/auth/signup/index.tsx | 4 +-- 4 files changed, 48 insertions(+), 12 deletions(-) diff --git a/src/app/(tabs)/story/index.tsx b/src/app/(tabs)/story/index.tsx index 2387f2f..2995426 100644 --- a/src/app/(tabs)/story/index.tsx +++ b/src/app/(tabs)/story/index.tsx @@ -89,7 +89,12 @@ function StoryScreen() { style={styles.authorImage} source={{ uri: story.author_image ? story.author_image : '' }} /> - + By {story.author_name} @@ -161,15 +166,29 @@ function StoryScreen() { systemFonts={fonts} /> - - - - By {story.author_name} - - + { + router.push({ + pathname: '/author', + params: { author: story.author_id.toString() }, + }); + }} + > + + + + By {story.author_name} + + +