(host: string)
| 9 | } |
| 10 | |
| 11 | export const appendProtocol = (host: string) => |
| 12 | `${isProd() ? 'https' : 'http'}://${host}`; |
| 13 | |
| 14 | // TODO: Should handle this on validation/save when creating an account |
| 15 | export const addHttpsToUrl = (url: string) => { |
no test coverage detected