Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 55 additions & 55 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ export function useFileTreeContextMenu({
patterns: menu.isFolder ? FOLDER_OR_ADAPTER_NAME_PATTERNS : FILE_NAME_PATTERNS,
})
},
[projectName, dataProvider, closeContextMenu, showErrorToast, onAfterRename],
[projectName, dataProvider, closeContextMenu, showErrorToast, onAfterRename, logApiError],
)

const handleDelete = useCallback(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useEffect, useMemo, useState, type ChangeEvent, type JSX } from 'react'
import { useSubmitOnEnter } from '~/hooks/use-submit-on-enter'
import type { FlowNode } from '~/routes/studio/canvas/flow'
import type { FlowNode } from '~/routes/studio/canvas-flow/canvas-flow'
import useFlowStore from '~/stores/flow-store'
import useNodeContextStore, { type NodeContextStore } from '~/stores/node-context-store'
import { useFFDoc } from '@frankframework/doc-library-react'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ export default function ProjectLanding(): React.JSX.Element {
setIsDiscovering(true)
fetchInstanceConfigurations()
.then((ffInstance): void => {
if (!ffInstance) return
setFFInstanceName(ffInstance.name)
setFFConfiguration(ffInstance.configurations)
})
Expand Down
Loading
Loading