diff --git a/src/views/home/agent/components/List.vue b/src/views/home/agent/components/List.vue
index 50bbddd..83ca229 100644
--- a/src/views/home/agent/components/List.vue
+++ b/src/views/home/agent/components/List.vue
@@ -8,18 +8,9 @@
import { ref } from 'vue'
import Item from './Item.vue'
- const messageList = ref([
- { id: 1, text: 'Hello', isUser: true },
- {
- id: 2,
- text: 'Hey, I am your design assistant FiDA. I noticed that you want to design a yellow sofa. I can help you! Tell me what else you need?'
- },
- {
- id: 3,
- text: 'Please design a vintage-inspired sofa with smooth, flowing lines and a sculptural silhouette. The sofa features a retro aesthetic combined with elegant curves, creating a timeless and refined look.',
- isUser: true
- }
- ])
+ const props = defineProps<{
+ messageList: Array
+ }>()