Skip adding www. prefix

This commit is contained in:
Tiago Jacobs
2022-04-12 13:07:23 -03:00
parent ff704e0d12
commit 40876783bf

View File

@@ -65,7 +65,7 @@ export const StorePortals = ({navigation, modalizeRef}: IStore) => {
setEmptyFields(false)
setUrlInvalid(false)
if (!name || !url) return setEmptyFields(true);
if(!url.includes('://')) setUrl('https://www.'+url)
if(!url.includes('://')) setUrl('https://'+url)
setLoadComponent(true)
}