4 lines
134 B
TypeScript
4 lines
134 B
TypeScript
|
|
export function isBrandingHidden(hideBrandingSetting: boolean, hasPaidPlan: boolean) {
|
||
|
|
return hasPaidPlan && hideBrandingSetting;
|
||
|
|
}
|