Skip to content

Commit 32360d2

Browse files
atrakhConvex, Inc.
authored andcommitted
Add null to log componentPath typing (#29662)
`componentPath` on `FunctionExecutionProgress` can be null. GitOrigin-RevId: d9942b48ae85629207251f4752f7c49f664b3f16
1 parent c8d78a4 commit 32360d2

File tree

1 file changed

+1
-1
lines changed
  • npm-packages/system-udfs/convex/_system/frontend

1 file changed

+1
-1
lines changed

npm-packages/system-udfs/convex/_system/frontend/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export type FunctionExecutionCompletion = {
5454

5555
export type FunctionExecutionProgess = {
5656
kind: "Progress";
57-
componentPath?: string;
57+
componentPath?: string | null;
5858
identifier: string;
5959
udfType: UdfType;
6060
// Unix timestamp (in seconds)

0 commit comments

Comments
 (0)