Skip to content

Commit 93471f3

Browse files
committed
Remove default config from tab provider
1 parent c059c26 commit 93471f3

3 files changed

Lines changed: 1 addition & 14 deletions

File tree

packages/client/providers/src/lib/TabProvider.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ export const TabProvider = ({ children }) => {
7676
const setLayout = (layout: SerializedDockview) => {
7777
const currentAgentId = currentAgentRef.current
7878
const TAB_LAYOUT_KEY = generateTabLayoutKey(config.projectId, currentAgentId)
79-
console.log('SETTING LAYOUT', layout)
8079
localStorage.setItem(TAB_LAYOUT_KEY, JSON.stringify(layout))
8180
}
8281

packages/shared/nodeSpec/src/nodeSpec.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,7 @@
1818
"valueType": "object"
1919
}
2020
],
21-
"configuration": [
22-
{
23-
"name": "numInputs",
24-
"valueType": "number",
25-
"defaultValue": 3
26-
}
27-
]
21+
"configuration": []
2822
},
2923
{
3024
"type": "magick/sendMessage",

plugins/core/src/lib/nodes/events/messageEvent.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,6 @@ export const messageEvent = makeEventNodeDefinition({
1818
typeName: 'magick/onMessage',
1919
label: 'On Message',
2020
category: NodeCategory.Event,
21-
configuration: {
22-
numInputs: {
23-
valueType: 'number',
24-
defaultValue: 3,
25-
},
26-
},
2721
in: {},
2822
out: {
2923
flow: 'flow',

0 commit comments

Comments
 (0)