Skip to content

Commit 9ec68a6

Browse files
committed
Fix link color overrides
1 parent 9bc0d4a commit 9ec68a6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

blog/2026-07-08-react-navigation-8.0-july-progress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ We have reworked this to be significantly shorter and simpler:
151151
- }
152152
+ export interface MyTabTypeBag extends NavigatorTypeBagBase {
153153
+ State: TabNavigationState<this['ParamList']>;
154+
+ ActionHelpers: TabActionHelpers<this['ParamList']>;
154155
+ ScreenOptions: MyNavigationOptions;
155156
+ EventMap: MyNavigationEventMap;
156-
+ ActionHelpers: TabActionHelpers<this['ParamList']>;
157157
+ Navigator: typeof TabNavigator;
158158
+ }
159159
+

versioned_docs/version-8.x/upgrading-from-7.x.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,9 @@ To work with the reworked TypeScript types, the type API for custom navigators h
203203
- }
204204
+ export interface MyTypeBag extends NavigatorTypeBagBase {
205205
+ State: TabNavigationState<this['ParamList']>;
206+
+ ActionHelpers: TabActionHelpers<this['ParamList']>;
206207
+ ScreenOptions: MyNavigationOptions;
207208
+ EventMap: MyNavigationEventMap;
208-
+ ActionHelpers: TabActionHelpers<this['ParamList']>;
209209
+ Navigator: typeof MyNavigator;
210210
+ }
211211
+

0 commit comments

Comments
 (0)