Skip to content

Commit 3a7d5b5

Browse files
committed
fix: imageStyles override
1 parent 729c69c commit 3a7d5b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Common/EmptyState/GenericEmptyState.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,19 @@ const GenericEmptyState = ({
6161
className={imageClassName || ''}
6262
src={image || AppNotDeployed}
6363
style={{
64-
...imageStyles,
6564
width: `${getImageSize().width}`,
6665
height: `${getImageSize().height}`,
66+
...imageStyles,
6767
}}
6868
alt="empty-state"
6969
/>
7070
)
7171
) : (
7272
<SvgImage
7373
style={{
74-
...imageStyles,
7574
width: `${getImageSize().width}`,
7675
height: `${getImageSize().height}`,
76+
...imageStyles,
7777
}}
7878
/>
7979
)}

0 commit comments

Comments
 (0)