Skip to content

Commit 6701a3d

Browse files
committed
prettier
1 parent 84b0976 commit 6701a3d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/interactions/brush.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,7 @@ function filterSignature(test, currentFx, currentFy) {
184184
: (x, y, fy) => (fy === undefined || fy === currentFy) && test(x, y)
185185
: currentFy === undefined
186186
? (x, y, fx) => (fx === undefined || fx === currentFx) && test(x, y)
187-
: (x, y, fx, fy) =>
188-
(fx === undefined || fx === currentFx) && (fy === undefined || fy === currentFy) && test(x, y);
187+
: (x, y, fx, fy) => (fx === undefined || fx === currentFx) && (fy === undefined || fy === currentFy) && test(x, y);
189188
}
190189

191190
function renderFilter(initialTest) {

0 commit comments

Comments
 (0)