Skip to content

Commit 1ce8e1a

Browse files
Type error fix 2 (#1039)
* type error fix * bump version
1 parent 276ac89 commit 1ce8e1a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/pipeline-graph/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@harnessio/pipeline-graph",
3-
"version": "1.0.0-react18.alpha.4",
3+
"version": "1.0.0-react18.alpha.5",
44
"private": false,
55
"author": "Harness Inc.",
66
"license": "Apache-2.0",

packages/pipeline-graph/src/context/canvas-provider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ interface CanvasContextProps {
1919
canvasTransformRef: React.MutableRefObject<CanvasTransform>
2020
setTargetEl: (el: HTMLDivElement) => void
2121
setCanvasTransform: (
22-
canvasTransform: CanvasTransform & { rootContainer?: HTMLDivElement; isInitial: boolean }
22+
canvasTransform: CanvasTransform & { rootContainer?: HTMLDivElement; isInitial?: boolean }
2323
) => void
2424
fit: () => void
2525
reset: () => void

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@harnessio/ui",
33
"description": "Harness Canary UI component library",
4-
"version": "0.0.1-react18.alpha.7",
4+
"version": "0.0.1-react18.alpha.8",
55
"private": false,
66
"type": "module",
77
"main": "./dist/index.js",

0 commit comments

Comments
 (0)