Skip to content

Commit

Permalink
is
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Lind committed Aug 28, 2024
1 parent cca8675 commit 6aad57c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion onboarding/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def dashboard(request):
if not team_member.approved:
return render(request, 'not_approved.html')

resources = Resource.objects.filter(team_member_type=team_member.team_member_type or team_member.team_member_type == 'all')
resources = Resource.objects.filter(team_member_type=team_member.team_member_type or team_member.team_member_type is 'all')
calendar_embed_code = team_member.google_calendar_embed_code

qr_codes = SubmissionLink.objects.filter(admin_user=request.user)
Expand Down

0 comments on commit 6aad57c

Please sign in to comment.