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 17e7bb0 commit 365bbbaCopy full SHA for 365bbba
packages/app/src/app/pages/Dashboard/Content/CreateNewSandbox/Modal/Components/MyTemplates.js
@@ -26,7 +26,10 @@ export default () => {
26
>
27
<img
28
height="109px"
29
- src={template.sandbox.screenshotUrl}
+ src={
30
+ template.sandbox.screenshotUrl ||
31
+ 'https://codesandbox.io/static/img/banner.png'
32
+ }
33
alt={template.title}
34
/>
35
<Border color={template.color} />
@@ -39,7 +42,11 @@ export default () => {
39
42
})
40
43
: new Array(3).fill({}).map(() => (
41
44
<MyTemplate>
- <img height="109px" alt="loading" />
45
+ <img
46
+ height="109px"
47
+ alt="loading"
48
+ src="https://codesandbox.io/static/img/banner.png"
49
+ />
50
<Border />
51
<div>
52
<TemplateTitle>Loading</TemplateTitle>
0 commit comments