fix: force captain enabled for self-hosted - remove feature flag dependency
This commit is contained in:
parent
75e3dde312
commit
e7326e543b
@ -28,9 +28,9 @@ export function useCaptain() {
|
|||||||
const draftMessage = useFunctionGetter('draftMessages/get', draftKey);
|
const draftMessage = useFunctionGetter('draftMessages/get', draftKey);
|
||||||
|
|
||||||
// === Feature Flags ===
|
// === Feature Flags ===
|
||||||
const captainEnabled = computed(() => {
|
// Force enabled: Captain is available in this self-hosted deployment
|
||||||
return isCloudFeatureEnabled(FEATURE_FLAGS.CAPTAIN);
|
// eslint-disable-next-line no-unused-vars
|
||||||
});
|
const captainEnabled = computed(() => true);
|
||||||
|
|
||||||
const captainTasksEnabled = computed(() => {
|
const captainTasksEnabled = computed(() => {
|
||||||
return isCloudFeatureEnabled(FEATURE_FLAGS.CAPTAIN_TASKS);
|
return isCloudFeatureEnabled(FEATURE_FLAGS.CAPTAIN_TASKS);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user