Skip to content

Commit

Permalink
Merge pull request #11198 from hassnian/issue-11197
Browse files Browse the repository at this point in the history
fix: Profile interactions test
  • Loading branch information
hassnian authored Nov 30, 2024
2 parents 2b64376 + aef3417 commit 3848be3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/profile/ProfileDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,9 @@ const buttonConfig = computed<ButtonConfig>(() =>
)
const switchToTab = (tab: ProfileTab) => {
activeTab.value = tab
if (activeTab.value !== tab) {
activeTab.value = tab
}
}
const onFollowersClick = () => {
Expand Down

0 comments on commit 3848be3

Please sign in to comment.