Skip to content

Commit 11fe842

Browse files
obiotclaude
andcommitted
Fix arrow-body-style lint error in Spine.js
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 340abe8 commit 11fe842

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/spine-plugin/src/Spine.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,9 @@ export default class Spine extends Renderable {
194194
);
195195

196196
// detect premultiplied alpha from atlas pages
197-
this.premultipliedAlpha = atlas.pages.some((page) => page.pma);
197+
this.premultipliedAlpha = atlas.pages.some((page) => {
198+
return page.pma;
199+
});
198200
if (this.renderer.WebGLVersion >= 1) {
199201
this.skeletonRenderer.premultipliedAlpha = this.premultipliedAlpha;
200202
}

0 commit comments

Comments
 (0)