Skip to content

Commit bea7358

Browse files
committed
docs: remove unnecessary @ts-ignore from signal forms playground
The @ts-ignore comment is no longer needed as the module resolution issue has been fixed in the playground editor configuration.
1 parent 183d194 commit bea7358

File tree

1 file changed

+1
-2
lines changed
  • adev/src/content/tutorials/playground/4-signal-forms/src

1 file changed

+1
-2
lines changed

adev/src/content/tutorials/playground/4-signal-forms/src/main.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import {bootstrapApplication} from '@angular/platform-browser';
22
import {Component, signal, ChangeDetectionStrategy} from '@angular/core';
3-
// @ts-ignore There's a known issue with type support in the playground editor for signal forms
4-
import {form, Field, required, email, submit} from '@angular/forms/signals';
3+
import {form, Field, required, email, debounce, submit} from '@angular/forms/signals';
54

65
interface LoginData {
76
email: string;

0 commit comments

Comments
 (0)