Skip to content

Commit

Permalink
fix(Billboard): don't disable matrix update (#2063)
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyJasonBennett committed Aug 8, 2024
1 parent e99c07a commit f4f910f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Billboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const Billboard: ForwardRefComponent<BillboardProps, Group> = /* @__PURE_

React.useImperativeHandle(fref, () => localRef.current, [])
return (
<group ref={localRef} matrixAutoUpdate={false} matrixWorldAutoUpdate={false} {...props}>
<group ref={localRef} {...props}>
<group ref={inner}>{children}</group>
</group>
)
Expand Down

0 comments on commit f4f910f

Please sign in to comment.