File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ const BoothColumn = ({
2727 ` }
2828 onClick = { ( ) => navigate ( `/booth/${ id } ` ) }
2929 >
30- < StyledImage src = { image . trim ( ) || DefaultImage } />
30+ < StyledImage src = { image || DefaultImage } />
3131 < div
3232 css = { css `
3333 ${ flexrow }
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ const SessionColumn = ({
2929 ` }
3030 onClick = { ( ) => navigate ( `/session/${ id } ` ) }
3131 >
32- < StyledImage src = { imageUrl . trim ( ) || DefaultImage } />
32+ < StyledImage src = { imageUrl || DefaultImage } />
3333 < div
3434 css = { css `
3535 ${ flexrow }
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ const BoothDetails = () => {
8686 >
8787 { data . boothLocation }
8888 </ Typography >
89- < StyledImage src = { data . imageUrl . trim ( ) || DefaultImage } />
89+ < StyledImage src = { data . imageUrl || DefaultImage } />
9090 < p
9191 css = { css `
9292 ${ typo . body . m }
You can’t perform that action at this time.
0 commit comments