Skip to content

Commit

Permalink
Fix error message for missing LocalSharedTransitionScope (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
eygraber authored Oct 29, 2024
1 parent 1528018 commit 80336ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import androidx.compose.ui.unit.Density
import androidx.compose.ui.unit.LayoutDirection

public val LocalSharedTransitionScope: ProvidableCompositionLocal<SharedTransitionScope> =
compositionLocalOf { error("LocalAnimatedVisibilityScope not provided") }
compositionLocalOf { error("LocalSharedTransitionScope not provided") }

public val LocalAnimatedVisibilityScope: ProvidableCompositionLocal<AnimatedVisibilityScope> =
compositionLocalOf { error("LocalAnimatedVisibilityScope not provided") }
Expand Down

0 comments on commit 80336ad

Please sign in to comment.