Skip to content

Commit

Permalink
fix: issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dukenv0307 committed Jul 19, 2023
1 parent 571face commit 4cc61a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libs/Permissions.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ function canUseCommentLinking(betas) {
* @returns {Boolean}
*/
function canUsePolicyRooms(betas) {
return _.contains(betas, CONST.BETAS.POLICY_ROOMS) || canUseAllBetas(betas);
return true;
// return _.contains(betas, CONST.BETAS.POLICY_ROOMS) || canUseAllBetas(betas);
}

/**
Expand Down

0 comments on commit 4cc61a9

Please sign in to comment.