Skip to content

Commit b2a4fa9

Browse files
committed
Fix compose lint violations
1 parent c6cc245 commit b2a4fa9

File tree

1 file changed

+1
-1
lines changed
  • workflow-trace-viewer/src/jvmMain/kotlin/com/squareup/workflow1/traceviewer/ui

1 file changed

+1
-1
lines changed

workflow-trace-viewer/src/jvmMain/kotlin/com/squareup/workflow1/traceviewer/ui/WorkflowTree.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ private fun DrawTree(
132132
We pair up the current node's children with previous frame's children.
133133
In the edge case that the current frame has additional children compared to the previous
134134
frame, we replace with null and will check before next recursive call.
135-
*/
135+
*/
136136
node.children.forEachIndexed { index, childNode ->
137137
val prevChildNode = previousNode?.children?.getOrNull(index)
138138
DrawTree(

0 commit comments

Comments
 (0)