Skip to content

Commit 058a138

Browse files
committed
style: apply code style
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 61519e1 commit 058a138

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/models/lifecycle.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ export class LifecycleRepository extends Set<Lifecycle> implements Sortable<Life
4545
if (a.constructor === b.constructor) {
4646
return a instanceof NamedLifecycle
4747
/* eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion -- false-positive */
48-
? a.compare(b as NamedLifecycle)
48+
? a.compare(b as typeof a)
4949
/* eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion -- false-positive */
50-
: a.localeCompare(b as LifecyclePhase)
50+
: a.localeCompare(b as typeof a)
5151
}
5252
return a.constructor.name.localeCompare(b.constructor.name)
5353
}

0 commit comments

Comments
 (0)