Skip to content

Commit 963a4c3

Browse files
committed
refactor(aria): remove obsoleted w/o for computed.toString
1 parent 1d2ab21 commit 963a4c3

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/aria/private/behaviors/signal-like/signal-like.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ export function convertGetterSetterToWritableSignalLike<T>(
4141

4242
export function computed<T>(computation: () => T): SignalLike<T> {
4343
const computed = createComputed(computation);
44-
// TODO: Remove the `toString` after https://github.com/angular/angular/pull/65948 is merged.
45-
computed.toString = () => `[Computed: ${computed()}]`;
4644
computed[SIGNAL].debugName = '';
4745
return computed;
4846
}

0 commit comments

Comments
 (0)