fix: button style and incomplete url
This commit is contained in:
parent
fb48222203
commit
04356944b0
2 changed files with 8 additions and 1 deletions
|
|
@ -118,6 +118,9 @@ const styles = {
|
|||
actionButtonWrapper: {
|
||||
display: 'flex',
|
||||
gap: 12
|
||||
},
|
||||
enterButton: {
|
||||
display: 'none'
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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}`
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue