Skip to content

Commit

Permalink
UIREQ-1040 - update logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Terala-Priyanka committed Nov 14, 2023
1 parent 375e09b commit 7399375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ViewRequest.js
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ class ViewRequest extends React.Component {

const actionMenu = ({ onToggle }) => {
if (isRequestClosed) {
if (!isRequestValid || (requestLevel === REQUEST_LEVEL_TYPES.TITLE && !titleLevelRequestsFeatureEnabled)) {
if (!isRequestValid || (requestLevel === REQUEST_LEVEL_TYPES.TITLE && !titleLevelRequestsFeatureEnabled) || isDCBTransaction) {
return null;
}

Expand Down

0 comments on commit 7399375

Please sign in to comment.