(mounted: boolean)
| 53 | }, []); |
| 54 | |
| 55 | function dnsSettings(mounted: boolean) { |
| 56 | api |
| 57 | .getDnsSettings(currentCommunity.id) |
| 58 | .then((response) => { |
| 59 | if (mounted && response && response.records) { |
| 60 | setRecords(response.records); |
| 61 | } |
| 62 | }) |
| 63 | .catch((_) => {}); |
| 64 | } |
| 65 | |
| 66 | const updateAccount = async (options?: any) => { |
| 67 | const form = document.getElementById('branding-form') as HTMLFormElement; |
no outgoing calls
no test coverage detected