👽 The removal of external id

This commit is contained in:
2024-09-11 23:40:23 +08:00
parent bba38e6845
commit f3b2a2a0ac
12 changed files with 33 additions and 31 deletions

View File

@ -35,7 +35,7 @@ class _PostActionState extends State<PostAction> {
setState(() {
_canModifyContent =
auth.userProfile.value!['id'] == widget.item.author.externalId;
auth.userProfile.value!['id'] == widget.item.author.id;
_isBusy = false;
});
}