budibase/packages/client/src/licensing/features.js

6 lines
100 B
JavaScript
Raw Normal View History

2022-09-22 10:49:39 +02:00
import { isFreePlan } from "./utils.js"
2022-04-26 12:28:31 +02:00
export const logoEnabled = () => {
2022-09-22 10:49:39 +02:00
return isFreePlan()
2022-04-26 12:28:31 +02:00
}