Skip to content

Commit

Permalink
rename variable to avoid shadowing another (#712)
Browse files Browse the repository at this point in the history
This fixes a small lint issue in some widget bundling code.
  • Loading branch information
paulfitz authored Oct 30, 2023
1 parent cc6265e commit 6059bdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/server/lib/WidgetRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
}
Expand Down

0 comments on commit 6059bdc

Please sign in to comment.