1
0
Fork 0
mirror of synced 2024-06-01 10:09:48 +12:00
budibase/packages/client/src/licensing/features.js

6 lines
100 B
JavaScript
Raw Normal View History

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