Skip to content

Commit

Permalink
refactor(favorites): Renames variable in user_prayers view
Browse files Browse the repository at this point in the history
  • Loading branch information
ERosendo committed Dec 18, 2024
1 parent 3a64767 commit 1615ea8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cl/favorites/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,14 +287,14 @@ async def user_prayers_view(
if not is_page_owner:
return redirect("top_prayers")

prayers = await get_user_prayers(requested_user)
rd_with_prayers = await get_user_prayers(requested_user)

count, total_cost = await get_user_prayer_history(requested_user)

is_eligible = await prayer_eligible(requested_user)

context = {
"prayers": prayers,
"rd_with_prayers": rd_with_prayers,
"requested_user": requested_user,
"is_page_owner": is_page_owner,
"count": count,
Expand Down

0 comments on commit 1615ea8

Please sign in to comment.