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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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