()
| 458 | const listEl = container.createDiv("qa-template-folder-list"); |
| 459 | |
| 460 | const getPaths = (): string[] => |
| 461 | normalizeTemplateFolderPaths(settingsStore.getState().templateFolderPaths); |
| 462 | const setPaths = (paths: string[]): void => { |
| 463 | settingsStore.setState({ templateFolderPaths: paths }); |
| 464 | }; |
nothing calls this directly
no test coverage detected