We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77b30d4 commit 3a0ee2bCopy full SHA for 3a0ee2b
src/components/app/view-actions/AddPageActions.tsx
@@ -69,13 +69,6 @@ function AddPageActions({ view }: { view: View }) {
69
void handleAddPage(ViewLayout.Calendar, 'New Calendar');
70
},
71
72
- {
73
- label: t('chat.newChat'),
74
- icon: <ViewIcon layout={ViewLayout.AIChat} size={'small'} />,
75
- onSelect: () => {
76
- void handleAddPage(ViewLayout.AIChat);
77
- },
78
79
],
80
[handleAddPage, t]
81
);
@@ -86,7 +79,6 @@ function AddPageActions({ view }: { view: View }) {
86
<DropdownMenuItem
87
key={action.label}
88
data-testid={
89
- action.label === t('chat.newChat') ? 'add-ai-chat-button' :
90
82
action.label === t('grid.menuName') ? 'add-grid-button' : undefined
91
83
}
92
84
disabled={action.disabled}
0 commit comments