(appendPath = '')
| 58 | }; |
| 59 | |
| 60 | const getCurrentPilePath = (appendPath = '') => { |
| 61 | if (!currentPile) return; |
| 62 | const pile = piles.find((p) => p.name == currentPile.name); |
| 63 | const path = window.electron.joinPath(pile.path, appendPath); |
| 64 | return path; |
| 65 | }; |
| 66 | |
| 67 | const writeConfig = async (piles) => { |
| 68 | if (!piles) return; |
no outgoing calls
no test coverage detected