Skip to content

Commit

Permalink
fix transaction too large bug (#2177)
Browse files Browse the repository at this point in the history
Co-authored-by: Leigh Douglas <[email protected]>
Co-authored-by: Isabel Martin <[email protected]>
  • Loading branch information
3 people authored Nov 26, 2024
1 parent 9975252 commit 25a0451
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class FrequentlyAskedQuestionFragment : Fragment(), Configure {
private fun startComposeMessageActivity(it: Project?) {
startActivity(
Intent(requireContext(), MessageCreatorActivity::class.java)
.putExtra(IntentKey.PROJECT, it)
.putExtra(IntentKey.PROJECT, it?.reduceProjectPayload())
)
}

Expand Down

0 comments on commit 25a0451

Please sign in to comment.