Skip to content

Commit 24049a8

Browse files
committed
Frozen Account: Fix arguments (#5867)
1 parent a45b268 commit 24049a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎src/components/middle/message/ActionMessage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ const ActionMessage = ({
450450
threadId={threadId}
451451
observeIntersection={observeIntersectionForPlaying}
452452
isCurrentUserPremium={isCurrentUserPremium}
453-
isAccountFrozen
453+
isAccountFrozen={isAccountFrozen}
454454
/>
455455
)}
456456
</div>

‎src/components/middle/message/Message.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1704,7 +1704,7 @@ const Message: FC<OwnProps & StateProps> = ({
17041704
observeIntersection={observeIntersectionForPlaying}
17051705
noRecentReactors={isChannel}
17061706
tags={tags}
1707-
isAccountFrozen
1707+
isAccountFrozen={isAccountFrozen}
17081708
/>
17091709
)}
17101710
</div>

0 commit comments

Comments
 (0)