Skip to content

Commit cb7c4c2

Browse files
style(webapp): drop trailing comma in the flood-fill neighbors literal
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FBU1opcNEbkxQuaptdHbAW
1 parent 07f87c4 commit cb7c4c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

standalone/webapp/app-store-screenshots/compose-framed.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ func floodFillTransparentRegion(
134134
column > 0 ? index - 1 : -1,
135135
column + 1 < width ? index + 1 : -1,
136136
row > 0 ? index - width : -1,
137-
row + 1 < height ? index + width : -1,
137+
row + 1 < height ? index + width : -1
138138
]
139139
for neighbor in neighbors where neighbor >= 0 {
140140
guard visited[neighbor] == 0, pixels[neighbor * 4 + 3] < 16 else { continue }

0 commit comments

Comments
 (0)