Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
w8r committed Dec 4, 2023
2 parents 5b393b6 + b2b8f76 commit f789817
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.6.1
4.6.1
20 changes: 20 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,4 @@
"dependencies": {
"lodash.throttle": "^4.1.1"
}
}
}
4 changes: 2 additions & 2 deletions src/overlay/canvas.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const CanvasLayerComponent = (
index,
visible,
}: CanvasLayerProps,
ref?: Ref<OgmaCanvasLayer>
ref?: Ref<OgmaCanvasLayer>,
) => {
const ogma = useOgma();
const [layer, setLayer] = useState<OgmaCanvasLayer | null>(null);
Expand All @@ -40,7 +40,7 @@ const CanvasLayerComponent = (
const newLayer = ogma.layers.addCanvasLayer(
render,
{ isStatic, noClear },
index
index,
);
setLayer(newLayer);

Expand Down

0 comments on commit f789817

Please sign in to comment.