We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61519e1 commit 058a138Copy full SHA for 058a138
src/models/lifecycle.ts
@@ -45,9 +45,9 @@ export class LifecycleRepository extends Set<Lifecycle> implements Sortable<Life
45
if (a.constructor === b.constructor) {
46
return a instanceof NamedLifecycle
47
/* eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion -- false-positive */
48
- ? a.compare(b as NamedLifecycle)
+ ? a.compare(b as typeof a)
49
50
- : a.localeCompare(b as LifecyclePhase)
+ : a.localeCompare(b as typeof a)
51
}
52
return a.constructor.name.localeCompare(b.constructor.name)
53
0 commit comments