6 lines
100 B
JavaScript
6 lines
100 B
JavaScript
|
import { isFreePlan } from "./utils.js"
|
||
|
|
||
|
export const logoEnabled = () => {
|
||
|
return isFreePlan()
|
||
|
}
|