Skip to content

Commit 8a89b62

Browse files
committed
ts fix
1 parent 03d8518 commit 8a89b62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/app-canvas/src/app/gl-app.element.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1819,7 +1819,7 @@ export class GLAppElement extends AppElement<GLNodeInfo> {
18191819
);
18201820

18211821
this.shaderStatements +=
1822-
this.shaderNodePreoutput + result?.result ?? '';
1822+
this.shaderNodePreoutput + (result?.result ?? '');
18231823

18241824
sdfIndex++;
18251825
} else if (
@@ -1839,7 +1839,7 @@ export class GLAppElement extends AppElement<GLNodeInfo> {
18391839
);
18401840

18411841
this.shaderStatements +=
1842-
this.shaderNodePreoutput + result?.result ?? '';
1842+
this.shaderNodePreoutput + (result?.result ?? '');
18431843

18441844
sdfIndex++;
18451845
} else {

0 commit comments

Comments
 (0)