Skip to content

Commit

Permalink
🎨 Use new array from WebConfig._persistableKeys
Browse files Browse the repository at this point in the history
  • Loading branch information
richardfrost committed Jan 7, 2024
1 parent 06b5388 commit 8e221e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/script/webConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export default class WebConfig extends Config {
keys = stringArray(keys);

// No keys provided, load everything
if (keys.length === 0) keys = this._persistableKeys;
if (keys.length === 0) keys = keys.concat(this._persistableKeys);

return keys;
}
Expand All @@ -153,7 +153,7 @@ export default class WebConfig extends Config {
keys = stringArray(keys);

// No keys provided, load everything
if (keys.length === 0) keys = this._persistableKeys;
if (keys.length === 0) keys = keys.concat(this._persistableKeys);

return keys;
}
Expand Down

0 comments on commit 8e221e8

Please sign in to comment.