We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d2ab21 commit 963a4c3Copy full SHA for 963a4c3
1 file changed
src/aria/private/behaviors/signal-like/signal-like.ts
@@ -41,8 +41,6 @@ export function convertGetterSetterToWritableSignalLike<T>(
41
42
export function computed<T>(computation: () => T): SignalLike<T> {
43
const computed = createComputed(computation);
44
- // TODO: Remove the `toString` after https://github.com/angular/angular/pull/65948 is merged.
45
- computed.toString = () => `[Computed: ${computed()}]`;
46
computed[SIGNAL].debugName = '';
47
return computed;
48
}
0 commit comments