(packId)
| 430 | } |
| 431 | |
| 432 | function getTemplatePackOrThrow(packId) { |
| 433 | const id = safeString(packId, DEFAULT_TEMPLATE_PACK); |
| 434 | const pack = TEMPLATE_PACKS[id]; |
| 435 | if (!pack) { |
| 436 | throw new CanvasError("unknown_template_pack", `Unknown template pack: ${id}`); |
| 437 | } |
| 438 | return { id, pack }; |
| 439 | } |
| 440 | |
| 441 | function getFieldSuggestionsForSection(sectionId) { |
| 442 | if (!stateCache?.fieldSuggestions || typeof stateCache.fieldSuggestions !== "object") { |
no test coverage detected