Skip to content

Commit

Permalink
Fixes after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
raamcosta committed Jul 20, 2024
1 parent 4aa0a90 commit 8d577d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ data class RawDestinationGenParams(
deepLinks: List<DeepLink>,
navGraphInfo: NavGraphInfo?,
destinationStyleType: DestinationStyleType,
composableReceiverSimpleName: String?,
composableReceiverType: TypeInfo?,
requireOptInAnnotationTypes: List<Importable>,
destinationNavArgsClass: RawNavArgsClass?,
activityDestinationParams: ActivityDestinationParams? = null,
Expand Down Expand Up @@ -95,7 +95,7 @@ data class RawDestinationGenParams(
deepLinks = deepLinks,
navGraphInfo = navGraphInfo,
destinationStyleType = destinationStyleType,
composableReceiverSimpleName = composableReceiverSimpleName,
composableReceiverType = composableReceiverType,
requireOptInAnnotationTypes = requireOptInAnnotationTypes,
destinationNavArgsClass = destinationNavArgsClass,
activityDestinationParams = activityDestinationParams,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ data class RawNavGraphGenParams(
operator fun invoke(
annotationType: Importable,
isNavHostGraph: Boolean,
defaultStartArgs: Importable?,
defaultTransitions: Importable?,
deepLinks: List<DeepLink>,
navArgs: RawNavArgsClass?,
Expand Down Expand Up @@ -88,6 +89,7 @@ data class RawNavGraphGenParams(
return RawNavGraphGenParams(
annotationType = annotationType,
isNavHostGraph = isNavHostGraph,
defaultStartArgs = defaultStartArgs,
defaultTransitions = defaultTransitions,
deepLinks = deepLinks,
navArgs = navArgs,
Expand Down

0 comments on commit 8d577d5

Please sign in to comment.