We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c1ea0b commit 6790af9Copy full SHA for 6790af9
packages/context/src/context.ts
@@ -91,7 +91,7 @@ export const useWorkspaceData = () => {
91
selectable: false,
92
showAddButton: true,
93
children: Object.entries(file.serviceFunctions || {}).map(([key, value]) => ({
94
- title: value?.description ?? key,
+ title: value.description || key,
95
key: [prefix, key].join('.'),
96
type: 'function',
97
showRemoveButton: true,
0 commit comments