Skip to content

Commit

Permalink
remove tutor from the errata FE list (#1587)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwvolo authored Oct 21, 2024
1 parent 9809e9a commit 8ddc64f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def errata_fields(request):
if request.GET.get('field', None) == 'resources':
for field, verbose in ERRATA_RESOURCES:
# This is not my favorite way to do this but we need to keep the data on existing errata
if field != 'OpenStax Concept Coach' and field != 'Rover by OpenStax':
if field != 'OpenStax Concept Coach' and field != 'Rover by OpenStax' and field != 'OpenStax Tutor':
response.append({'field': field, 'verbose': verbose})

return JsonResponse(response, safe=False)
Expand Down

0 comments on commit 8ddc64f

Please sign in to comment.