File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed
apps/sim/app/workspace/[workspaceId]/w/[workflowId] Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ export interface CanvasMenuProps {
2626 onOpenLogs : ( ) => void
2727 onToggleVariables : ( ) => void
2828 onToggleChat : ( ) => void
29- onInvite : ( ) => void
3029 isVariablesOpen ?: boolean
3130 isChatOpen ?: boolean
3231 hasClipboard ?: boolean
@@ -55,15 +54,12 @@ export function CanvasMenu({
5554 onOpenLogs,
5655 onToggleVariables,
5756 onToggleChat,
58- onInvite,
5957 isVariablesOpen = false ,
6058 isChatOpen = false ,
6159 hasClipboard = false ,
6260 disableEdit = false ,
63- disableAdmin = false ,
6461 canUndo = false ,
6562 canRedo = false ,
66- isInvitationsDisabled = false ,
6763} : CanvasMenuProps ) {
6864 return (
6965 < Popover
Original file line number Diff line number Diff line change @@ -3323,15 +3323,12 @@ const WorkflowContent = React.memo(() => {
33233323 onOpenLogs = { handleContextOpenLogs }
33243324 onToggleVariables = { handleContextToggleVariables }
33253325 onToggleChat = { handleContextToggleChat }
3326- onInvite = { handleContextInvite }
33273326 isVariablesOpen = { isVariablesOpen }
33283327 isChatOpen = { isChatOpen }
33293328 hasClipboard = { hasClipboard ( ) }
33303329 disableEdit = { ! effectivePermissions . canEdit }
3331- disableAdmin = { ! effectivePermissions . canAdmin }
33323330 canUndo = { canUndo }
33333331 canRedo = { canRedo }
3334- isInvitationsDisabled = { isInvitationsDisabled }
33353332 />
33363333 </ >
33373334 ) }
You can’t perform that action at this time.
0 commit comments