diff --git a/CHANGES.rst b/CHANGES.rst
index 2014348334785a9d9b6115aa0e5f7bb6796f8c9d..66f1ce2a4f183d989a1795ac45a899e15f624368 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -9,6 +9,11 @@ Changes
 =======
 
 
+Version 2025.1.10 (released 2025-02-28)
+
+- Re-enable `rdm-curation` requests
+
+
 Version 2025.1.9 (released 2025-02-13)
 
 - Allow secondary email address to be removed again
diff --git a/invenio_config_tuw/__init__.py b/invenio_config_tuw/__init__.py
index f3aeeaaec3d7b39a093d7172a80944c07258c271..273f3c9b74e3a5e29cfee05e73041937229f3571 100644
--- a/invenio_config_tuw/__init__.py
+++ b/invenio_config_tuw/__init__.py
@@ -9,6 +9,6 @@
 
 from .ext import InvenioConfigTUW
 
-__version__ = "2025.1.9"
+__version__ = "2025.1.10"
 
 __all__ = ("__version__", "InvenioConfigTUW")
diff --git a/invenio_config_tuw/config.py b/invenio_config_tuw/config.py
index c94d4ea52c7b535ffc09935b8620021e30cf28a0..2dc98ad50127579973e671d66d555cf2398ec158 100644
--- a/invenio_config_tuw/config.py
+++ b/invenio_config_tuw/config.py
@@ -22,7 +22,6 @@ from invenio_curations.services.facets import status as facets_status
 from invenio_curations.services.facets import type as facets_type
 from invenio_i18n import gettext as _
 from invenio_oauthclient.views.client import auto_redirect_login
-from invenio_rdm_records.config import RDM_RECORDS_REVIEWS
 
 from .auth import TUWSSOSettingsHelper
 from .curations import (
@@ -264,16 +263,6 @@ OAISERVER_METADATA_FORMATS = {
 
 RDM_ARCHIVE_DOWNLOAD_ENABLED = False
 
-RDM_RECORDS_REVIEWS = [rt for rt in RDM_RECORDS_REVIEWS if rt != "community-submission"]
-"""Remove the ``community-submission`` from the list of supported review types.
-
-We require mandatory record reviews before publication, but community-submission
-requests could be used to evade them and publish records directly (when community
-members accept the record in question).
-As such, we remove the community-submission as a supported review type.
-This config item is checked in the `records_service.review.create()` method.
-"""
-
 
 # Invenio-Requests
 # ================