Skip to content

Commit

Permalink
indent lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ndiritumichael committed Sep 17, 2024
1 parent 9aef1b3 commit 09b0347
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions app/src/main/java/com/devmike/gitissuesmobile/ui/theme/Type.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ import androidx.compose.ui.unit.sp
val Typography =
Typography(
bodyLarge =
TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Normal,
fontSize = 16.sp,
lineHeight = 24.sp,
letterSpacing = 0.5.sp,
),
TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Normal,
fontSize = 16.sp,
lineHeight = 24.sp,
letterSpacing = 0.5.sp,
),
/* Other default text styles to override
titleLarge = TextStyle(
fontFamily = FontFamily.Default,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ fun GetRepositoryDetailsQuery.Data.toIssues(): List<IssueDTO> =
createdAt = node.createdAt.toString(),
author = node.author?.login ?: "No Author",
label =
node.labels
?.edges
?.filterNotNull()
?.mapNotNull { it.node?.name } ?: listOf(),
node.labels
?.edges
?.filterNotNull()
?.mapNotNull { it.node?.name } ?: listOf(),
)
} ?: emptyList()

0 comments on commit 09b0347

Please sign in to comment.