diff --git a/bookwyrm/templates/import.html b/bookwyrm/templates/import.html index 8e3f5eb49..bfa8d3ec8 100644 --- a/bookwyrm/templates/import.html +++ b/bookwyrm/templates/import.html @@ -21,8 +21,6 @@ -

- Imports are limited in size, and only the first {{ limit }} items will be imported.

diff --git a/bookwyrm/views.py b/bookwyrm/views.py index 9a0157b11..10137684b 100644 --- a/bookwyrm/views.py +++ b/bookwyrm/views.py @@ -14,7 +14,6 @@ from django.views.decorators.http import require_GET from bookwyrm import outgoing from bookwyrm import forms, models -from bookwyrm import goodreads_import from bookwyrm.activitypub import ActivitypubResponse from bookwyrm.connectors import connector_manager from bookwyrm.settings import PAGE_LENGTH @@ -252,7 +251,6 @@ def import_page(request): 'import_form': forms.ImportForm(), 'jobs': models.ImportJob. objects.filter(user=request.user).order_by('-created_date'), - 'limit': goodreads_import.MAX_ENTRIES, })