rename variable to avoid shadowing another (#712)

This fixes a small lint issue in some widget bundling code.
This commit is contained in:
Paul Fitzpatrick
2023-10-30 09:52:42 -04:00
committed by GitHub
parent cc6265eebf
commit 6059bdcf66

View File

@@ -209,8 +209,8 @@ class CachedWidgetRepository extends WidgetRepositoryImpl {
return list; return list;
} }
public testOverrideUrl(url: string) { public testOverrideUrl(overrideUrl: string) {
super.testOverrideUrl(url); super.testOverrideUrl(overrideUrl);
this._cache.reset(); this._cache.reset();
} }
} }