Remove created activity data from response in addActivity handler

This commit is contained in:
paritosh18
2025-11-22 21:10:17 +05:30
parent 1c83cc5910
commit fbd3b12937

View File

@@ -45,7 +45,7 @@ export const handler = safeHandler(async (
body: JSON.stringify({
success: true,
message: 'Activity created successfully',
data: created,
data: null,
}),
};
});