Skip to content

Commit

Permalink
Update error text for missing tab styles
Browse files Browse the repository at this point in the history
  • Loading branch information
rock3r committed Jun 1, 2024
1 parent 3bf84db commit cbad92d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,10 @@ private fun <T> TabState.chooseValueIgnoreCompat(

public val LocalDefaultTabStyle: ProvidableCompositionLocal<TabStyle> =
staticCompositionLocalOf {
error("No LocalTabStyle provided. Have you forgotten the theme?")
error("No LocalDefaultTabStyle provided. Have you forgotten the theme?")
}

public val LocalEditorTabStyle: ProvidableCompositionLocal<TabStyle> =
staticCompositionLocalOf {
error("No LocalTabStyle provided. Have you forgotten the theme?")
error("No LocalEditorTabStyle provided. Have you forgotten the theme?")
}

0 comments on commit cbad92d

Please sign in to comment.