diff --git a/app/models/profile.rb b/app/models/profile.rb index e0e111773cc..c7050dc2005 100644 --- a/app/models/profile.rb +++ b/app/models/profile.rb @@ -26,11 +26,11 @@ class Profile < ApplicationRecord attr_reader :personal_key def fraud_review_pending? - !!(fraud_review_pending || fraud_review_pending_at) + fraud_review_pending_at.present? end def fraud_rejection? - !!(fraud_rejection || fraud_rejection_at) + fraud_rejection_at.present? end def gpo_verification_pending?