We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a1d40d commit 6f2b307Copy full SHA for 6f2b307
src/Shared/Components/Header/IframePromoButton.tsx
@@ -1,4 +1,4 @@
1
-import { VisibleModal } from '@Common/index'
+import { GenericEmptyState, VisibleModal } from '@Common/index'
2
import { ComponentSizeType } from '@Shared/constants'
3
import { useState, useCallback } from 'react'
4
import { ReactComponent as Close } from '@Icons/ic-close.svg'
@@ -45,7 +45,12 @@ export const IframePromoButton = () => {
45
referrerPolicy="no-referrer"
46
/>
47
) : (
48
- <div className="flex h-100">No data available.</div>
+ <div className="flex h-100">
49
+ <GenericEmptyState
50
+ title="Nothing to show"
51
+ subTitle="An iframe appears here in a parallel universe"
52
+ />
53
+ </div>
54
)}
55
</div>
56
</VisibleModal>
0 commit comments