fix(inbox-layout): remove unnecessary keep-alive wrapper around router-view component preventing same conversation from being loaded again in different conversation list

This commit is contained in:
Abhinav Raut
2025-06-07 20:23:08 +05:30
parent 28dcd6cb2f
commit dc6fede081
+1 -3
View File
@@ -5,9 +5,7 @@
</div>
<div class="grow">
<router-view v-slot="{ Component }">
<keep-alive>
<component :is="Component" />
</keep-alive>
<component :is="Component" />
</router-view>
</div>
</div>