Skip to content

Commit

Permalink
fixed install and customize crash UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorsten committed Dec 20, 2021
1 parent 0451656 commit 8f7eab2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const AiryBubble = (props: Props) => {
return (
<div
className={style.hideBubble}
style={props.isChatHidden && {height: '60px', display: 'block'}}
style={props.isChatHidden ? {height: '60px', display: 'block'} : {}}
onClick={() => props.toggleHideChat()}
data-cy={props.dataCyId}
>
Expand Down

0 comments on commit 8f7eab2

Please sign in to comment.