Skip to content

Commit bd2ca67

Browse files
supriyasupriya
authored andcommitted
fixed delay for logout animation
1 parent f3146ca commit bd2ca67

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

ios/NativeStarterKit.xcodeproj/project.pbxproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
};
66
objectVersion = 46;
77
objects = {
8+
89
/* Begin PBXBuildFile section */
910
00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; };
1011
00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; };
@@ -476,8 +477,12 @@
476477
TargetAttributes = {
477478
00E356ED1AD99517003FC87E = {
478479
CreatedOnToolsVersion = 6.2;
480+
DevelopmentTeam = KJN4Y4YH4J;
479481
TestTargetID = 13B07F861A680F5B00A75B9A;
480482
};
483+
13B07F861A680F5B00A75B9A = {
484+
DevelopmentTeam = KJN4Y4YH4J;
485+
};
481486
};
482487
};
483488
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "NativeStarterKit" */;
@@ -737,6 +742,7 @@
737742
isa = XCBuildConfiguration;
738743
buildSettings = {
739744
BUNDLE_LOADER = "$(TEST_HOST)";
745+
DEVELOPMENT_TEAM = KJN4Y4YH4J;
740746
GCC_PREPROCESSOR_DEFINITIONS = (
741747
"DEBUG=1",
742748
"$(inherited)",
@@ -759,6 +765,7 @@
759765
buildSettings = {
760766
BUNDLE_LOADER = "$(TEST_HOST)";
761767
COPY_PHASE_STRIP = NO;
768+
DEVELOPMENT_TEAM = KJN4Y4YH4J;
762769
INFOPLIST_FILE = NativeStarterKitTests/Info.plist;
763770
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
764771
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
@@ -777,6 +784,7 @@
777784
buildSettings = {
778785
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
779786
DEAD_CODE_STRIPPING = NO;
787+
DEVELOPMENT_TEAM = KJN4Y4YH4J;
780788
HEADER_SEARCH_PATHS = (
781789
"$(inherited)",
782790
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
@@ -799,6 +807,7 @@
799807
isa = XCBuildConfiguration;
800808
buildSettings = {
801809
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
810+
DEVELOPMENT_TEAM = KJN4Y4YH4J;
802811
HEADER_SEARCH_PATHS = (
803812
"$(inherited)",
804813
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,

js/reducers/route.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default function (state:State = initialState, action:Action): State {
2929
}
3030

3131
if (action.type === REPLACE_ROUTE) {
32-
globalNav.navigator.replaceWithAnimation({ id: action.route });
32+
globalNav.navigator.replace({ id: action.route });
3333
const routes = state.routes;
3434
routes.pop();
3535
return {

0 commit comments

Comments
 (0)