Skip to content

Commit

Permalink
fix TypeScript warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed Jan 18, 2025
1 parent 2d45269 commit cdb45c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/django-formset/DjangoFormset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class FieldGroup {
// currently only the `<textarea is="django-richtext">` is initialized asynchronously
textAreaElement.addEventListener('initialized', () => resolveInitialized(textAreaElement.isInitialized));
} else {
resolveInitialized(true);
resolveInitialized!(true);
}

this.name = this.assertUniqueName();
Expand Down

0 comments on commit cdb45c7

Please sign in to comment.