diff --git a/app/presenters/publishing_api/worldwide_office_presenter.rb b/app/presenters/publishing_api/worldwide_office_presenter.rb index c661dc3ba2a..353b7aee9a7 100644 --- a/app/presenters/publishing_api/worldwide_office_presenter.rb +++ b/app/presenters/publishing_api/worldwide_office_presenter.rb @@ -41,11 +41,7 @@ def edition_links end def links - { - contact: [], - parent: [], - worldwide_organisation: [], - } + {} end private diff --git a/test/unit/app/presenters/publishing_api/worldwide_office_presenter_test.rb b/test/unit/app/presenters/publishing_api/worldwide_office_presenter_test.rb index 764c16a99a7..e26f33b181c 100644 --- a/test/unit/app/presenters/publishing_api/worldwide_office_presenter_test.rb +++ b/test/unit/app/presenters/publishing_api/worldwide_office_presenter_test.rb @@ -46,11 +46,7 @@ def present(...) }, } - expected_links = { - contact: [], - parent: [], - worldwide_organisation: [], - } + expected_links = {} presented_item = present(worldwide_office)