Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Commit

Permalink
remove concat
Browse files Browse the repository at this point in the history
  • Loading branch information
ry061521 committed Sep 8, 2023
1 parent cc2a7ba commit 073a1ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/terra-clinical-item-view/src/ItemView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ const renderSingleDisplayView = (singleDisplay, overrideDefaultStyling) => {
* Since this is always a singular display, the content styling will be the primary defaults if they are not overridden.
* We don't have to call into the classesForContent method and instead can just set the primary size and color here.
*/
const contentClass = overrideDefaultStyling ? 'content' : ['content'].concat(['content-primary-size', 'content-primary-color']);
const contentClass = overrideDefaultStyling ? 'content' : ['content', 'content-primary-size', 'content-primary-color'];

return (
<div className={cx('single-result-column-container')}>
Expand Down

0 comments on commit 073a1ab

Please sign in to comment.