Skip to content

Commit

Permalink
force modal responsivness
Browse files Browse the repository at this point in the history
  • Loading branch information
daiagi committed May 7, 2024
1 parent b64246c commit 216f658
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/profile/follow/Modal.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<NeoModal :value="vOpen" @close="close">
<NeoModal :key="accountId" :value="vOpen" @close="close">
<ModalBody content-class="px-6 py-5" @close="close">
<template #header>
<div class="flex">
Expand Down Expand Up @@ -39,6 +39,8 @@ import TabItem from '@/components/shared/TabItem.vue'
import { Follower } from '@/services/profile'
import { Tab } from '@/components/profile/types'
const { accountId } = useAuth()
const emit = defineEmits(['close'])
const props = defineProps<{
Expand Down

0 comments on commit 216f658

Please sign in to comment.