From 5cab180865323146db1886e6d7e1244c4f63049b Mon Sep 17 00:00:00 2001 From: David Ernst Date: Wed, 17 Jun 2020 00:24:35 -0700 Subject: [PATCH] Show 'Sharing sit w/ friends' msg for 2sec instead of 1 --- src/CountdownScreen/CountdownScreen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CountdownScreen/CountdownScreen.tsx b/src/CountdownScreen/CountdownScreen.tsx index 4014ec0..30aeb5b 100644 --- a/src/CountdownScreen/CountdownScreen.tsx +++ b/src/CountdownScreen/CountdownScreen.tsx @@ -84,7 +84,7 @@ function CountdownScreen(props: Props) { // Show confirmation, then fade out Animated.sequence([ Animated.timing(friendNotifConfirmationOpacity, { toValue: 0.8 }), - Animated.delay(1000), + Animated.delay(2000), Animated.timing(friendNotifConfirmationOpacity, { duration: 1500, easing: Easing.linear,