Remove duplicate copilot

This commit is contained in:
Pranav
2025-05-09 11:03:02 -07:00
parent 5e2678bc6d
commit 580d08a033
@@ -1,8 +1,13 @@
<script setup>
import ContactPanel from 'dashboard/routes/dashboard/conversation/ContactPanel.vue';
defineProps({
currentChat: {
required: true,
type: Object,
},
});
const emit = defineEmits(['toggleContactPanel']);
const toggleContactPanel = () => {
emit('toggleContactPanel');
};