diff --git a/services/web/app/src/Features/Subscription/SubscriptionController.js b/services/web/app/src/Features/Subscription/SubscriptionController.js index 149c3ac993..5e04711b38 100644 --- a/services/web/app/src/Features/Subscription/SubscriptionController.js +++ b/services/web/app/src/Features/Subscription/SubscriptionController.js @@ -457,9 +457,6 @@ function cancelSubscription(req, res, next) { } /** - * @param {import('express').Request} req - * @param {import('express').Response} res - * @param {import('express').NextFunction} next * @returns {Promise} */ async function canceledSubscription(req, res, next) { diff --git a/services/web/types/user.ts b/services/web/types/user.ts index 5cb6459a83..dd176bdd0e 100644 --- a/services/web/types/user.ts +++ b/services/web/types/user.ts @@ -68,6 +68,7 @@ export type LoggedOutUser = { refProviders?: undefined writefull?: undefined isAdmin?: undefined + featureUsage?: undefined } export type MongoUser = Pick> & { _id: string }