(id: string, isFolder: boolean)
| 88 | } |
| 89 | |
| 90 | const handleDoubleClick = (id: string, isFolder: boolean): void => { |
| 91 | if (!isFolder) { |
| 92 | openPage(id, false) |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | const handleCreatePage = async (): Promise<void> => { |
| 97 | const page = await createPage(undefined, selectedKey ?? undefined) |
nothing calls this directly
no test coverage detected