Skip to content

Commit b0a0516

Browse files
d4mationclaude
andcommitted
ENG-219: Fix lint error in config.ts (let → const)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d130c3e commit b0a0516

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ export class Config {
394394
if (this._i18n !== null) return this._i18n;
395395

396396
const defaults = this.config.i18n_defaults;
397-
let i18nRaw = this.config.i18n;
397+
const i18nRaw = this.config.i18n;
398398

399399
if (!i18nRaw || (Array.isArray(i18nRaw) && i18nRaw.length === 0)) {
400400
this._i18n = [];

0 commit comments

Comments
 (0)