(draftId)
| 36 | } |
| 37 | |
| 38 | export const discardSkillInstallDraft = async (draftId) => { |
| 39 | return apiDelete(`${USER_BASE_URL}/install-drafts/${encodeURIComponent(draftId)}`) |
| 40 | } |
| 41 | |
| 42 | export const getSkillDependencyOptions = async (slug) => { |
| 43 | const query = slug ? `?slug=${encodeURIComponent(slug)}` : '' |
nothing calls this directly
no test coverage detected