Skip to content

Commit

Permalink
🔥 Skip metadata update on internal account (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikprk committed Jun 4, 2024
1 parent 5bb2dd5 commit 19c7605
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ export const InternalComment: FC<InternalCommentProps> = ({
onEditClick,
onDeleteClick,
onReactionClick,
onOnBoardingPopoverOpen,
reactions,
onReplyClick,
replyAvatars,
Expand Down Expand Up @@ -169,15 +168,13 @@ export const InternalComment: FC<InternalCommentProps> = ({

const handleCommentReactionClick = useCallback(
async (reactionId: CommentReaction) => {
onReactionClick?.(reactionId)

if (!reactionPopoverDismissed) {
setTempReactionId(reactionId)
await onOnBoardingPopoverOpen?.(reactionId)
popoverRef.current?.show()
} else {
onReactionClick?.(reactionId)
}
},
[onOnBoardingPopoverOpen, onReactionClick, reactionPopoverDismissed]
[onReactionClick, reactionPopoverDismissed]
)

const sortedReactions = reactions && [...reactions].sort((a, b) => (b.count || 0) - (a.count || 0))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const useTransaction = (): HandleTransactionFn => {
return false
}

if (isSignerMetadataOutdated && WALLETS_WITH_METADATA.includes(wallet?.extensionName ?? '')) {
if (isSignerMetadataOutdated && wallet?.extensionName && WALLETS_WITH_METADATA.includes(wallet.extensionName)) {
await new Promise((resolve) => {
openOngoingTransactionModal({
title: 'Update Wallet Metadata',
Expand Down

0 comments on commit 19c7605

Please sign in to comment.