Skip to content

Commit b4f0ced

Browse files
author
test
committed
fix(logs): remove unused finalization type guard
Drop the unused helper so this PR only ships the persistence-side status types it actually uses.
1 parent 44f4ad9 commit b4f0ced

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

apps/sim/lib/logs/types.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,6 @@ export const EXECUTION_FINALIZATION_PATHS = [
8181

8282
export type ExecutionFinalizationPath = (typeof EXECUTION_FINALIZATION_PATHS)[number]
8383

84-
export function isExecutionFinalizationPath(value: unknown): value is ExecutionFinalizationPath {
85-
return (
86-
typeof value === 'string' && (EXECUTION_FINALIZATION_PATHS as readonly string[]).includes(value)
87-
)
88-
}
89-
9084
export interface ExecutionLastStartedBlock {
9185
blockId: string
9286
blockName: string

0 commit comments

Comments
 (0)