We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0455a66 commit 9032792Copy full SHA for 9032792
src/deriveLinkDefaults.ts
@@ -180,6 +180,11 @@ export function initialLoader(datasets: ILinkConfig['datasets']) {
180
}
181
182
return Promise.all(resolvedDataSets).then((data) => data.filter((d): d is DataSet => d != null));
183
+ return Promise.all(resolvedDataSets).then((data) => {
184
+ const cleaned = data.filter((d): d is DataSet => d != null);
185
+ cleaned.forEach((d) => add(d));
186
+ return cleaned;
187
+ });
188
};
189
190
0 commit comments