fix(core): hide user tier name (#17418)

This commit is contained in:
Sehoon Shon
2026-01-23 22:16:01 -05:00
committed by GitHub
parent 1832f7b90a
commit 3c2482a084

View File

@@ -964,7 +964,8 @@ export class Config {
}
getUserTierName(): string | undefined {
return this.contentGenerator?.userTierName;
// TODO(#1275): Re-enable user tier display when ready.
return undefined;
}
/**