diff --git a/src/api/endpoints/authFactor.ts b/src/api/endpoints/authFactor.ts index 34d63e4..8264c5e 100644 --- a/src/api/endpoints/authFactor.ts +++ b/src/api/endpoints/authFactor.ts @@ -25,7 +25,7 @@ export default function getReadAuthFactorEndpoints< url: buildUrl(urls.authFactor.list, { search }), method: "GET", }), - providesTags: tagData(AUTH_FACTOR_TAG), + providesTags: tagData(AUTH_FACTOR_TAG, { includeListTag: true }), }), } } diff --git a/src/api/endpoints/klass.ts b/src/api/endpoints/klass.ts index 2a28b7e..49d8e0e 100644 --- a/src/api/endpoints/klass.ts +++ b/src/api/endpoints/klass.ts @@ -81,7 +81,7 @@ export default function getReadClassEndpoints< url: buildUrl(urls.class.list, { search }), method: "GET", }), - providesTags: tagData(CLASS_TAG), + providesTags: tagData(CLASS_TAG, { includeListTag: true }), }), } } diff --git a/src/api/endpoints/user.ts b/src/api/endpoints/user.ts index 5b6485d..0a6d26b 100644 --- a/src/api/endpoints/user.ts +++ b/src/api/endpoints/user.ts @@ -64,7 +64,7 @@ export default function getReadUserEndpoints< url: buildUrl(urls.user.list, { search }), method: "GET", }), - providesTags: tagData(USER_TAG), + providesTags: tagData(USER_TAG, { includeListTag: true }), }), } }