fixes tests

This commit is contained in:
pandeymangg
2026-05-06 16:33:03 +05:30
parent 9ef4be270b
commit 6218153351
@@ -165,17 +165,14 @@ export const getAccessControlPermission = async (organizationId: string): Promis
};
export const getIsUnifyFeedbackEnabled = async (organizationId: string): Promise<boolean> => {
return true;
return getCustomPlanFeaturePermission(organizationId, "unifyFeedback");
};
export const getIsFeedbackDirectoriesEnabled = async (organizationId: string): Promise<boolean> => {
return true;
return getCustomPlanFeaturePermission(organizationId, "feedbackDirectories");
};
export const getIsDashboardsEnabled = async (organizationId: string): Promise<boolean> => {
return true;
return getCustomPlanFeaturePermission(organizationId, "dashboards");
};