Skip to content

Commit 8b02431

Browse files
committedMar 1, 2025·
Fixing 'account_migration_pending?' method.
1 parent 4ccd6b1 commit 8b02431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎app/models/user.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ def remember_me
614614
end
615615

616616
def account_migration_pending?
617-
AccountMigration..exists?(new_person_id: id, completed_at: nil)
617+
AccountMigration.exists?(new_person_id: id, completed_at: nil)
618618
end
619619

620620
private

0 commit comments

Comments
 (0)
Please sign in to comment.