Skip to content

Commit

Permalink
fix canvasSize log issue
Browse files Browse the repository at this point in the history
  • Loading branch information
spearwolf committed Mar 20, 2024
1 parent 1597762 commit 5c4095c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vfx/src/shadow-objects/VfxDisplay.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class VfxDisplay {

const [getCanvas, setCanvas] = provideContext('canvas');

const [getCanvasSize, setCanvasSize] = createSignal('canvasSize', [0, 0, 0], {
const [getCanvasSize, setCanvasSize] = createSignal([0, 0, 0], {
equals: (a, b) => a[0] === b[0] && a[1] === b[1] && a[2] === b[2],
});

Expand Down

0 comments on commit 5c4095c

Please sign in to comment.