feat: added context when committing to invite workspace members

This commit is contained in:
Zack Fu Zi Xiang 2024-03-04 11:02:39 +08:00
parent 70f2db7a7f
commit 5f4d53b15b
No known key found for this signature in database
1 changed files with 4 additions and 1 deletions

View File

@ -176,7 +176,10 @@ pub async fn invite_workspace_members(
.await?;
}
txn.commit().await?;
txn
.commit()
.await
.context("Commit transaction to invite workspace members")?;
Ok(())
}