diff --git a/src/modules/user/infrastructure/http/controllers/UnfollowTargetController.ts b/src/modules/user/infrastructure/http/controllers/UnfollowTargetController.ts index cef68e1d..f056be91 100644 --- a/src/modules/user/infrastructure/http/controllers/UnfollowTargetController.ts +++ b/src/modules/user/infrastructure/http/controllers/UnfollowTargetController.ts @@ -35,7 +35,7 @@ export class UnfollowTargetController extends Controller { return this.fail(res, result.error); } - return this.ok(res); + return this.ok(res, { success: true }); } catch (error: any) { return this.handleError(res, error); }