fix: button style and incomplete url

This commit is contained in:
José Oliveira 2022-02-01 23:25:00 +00:00
parent fb48222203
commit 04356944b0
2 changed files with 8 additions and 1 deletions

View file

@ -118,6 +118,9 @@ const styles = {
actionButtonWrapper: {
display: 'flex',
gap: 12
},
enterButton: {
display: 'none'
}
}

View file

@ -1,4 +1,8 @@
const url = `https://${window.location.hostname}`
const url = `https://${
process.env.NODE_ENV === 'development'
? window.location.host
: window.location.hostname
}`
const urlResolver = content => `${url}${content}`