Commit f83eaed
Fix TypeScript error: iterate over loader Map values, not entries
The previous fix had a type error because it was iterating over the Map
directly (which yields entries as tuples) instead of using .values() to
iterate over just the MetadataLoader instances.
packages/metadata/src/metadata-manager.ts:166
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>1 parent 0d7d18f commit f83eaed
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
162 | 162 | | |
163 | 163 | | |
164 | 164 | | |
165 | | - | |
| 165 | + | |
166 | 166 | | |
167 | 167 | | |
168 | 168 | | |
| |||
0 commit comments