Skip to content

Commit 8d9f5c6

Browse files
author
Ives van Hoorne
committed
Fix description field being null
1 parent 19dbaee commit 8d9f5c6

File tree

1 file changed

+1
-1
lines changed
  • packages/common/templates/configuration/package-json

1 file changed

+1
-1
lines changed

packages/common/templates/configuration/package-json/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export function generateFileFromSandbox(sandbox: Sandbox) {
88

99
jsonFile.name = sandbox.title || sandbox.id;
1010
jsonFile.version = '1.0.0';
11-
jsonFile.description = sandbox.description;
11+
jsonFile.description = sandbox.description || '';
1212
jsonFile.keywords = sandbox.tags;
1313
jsonFile.homepage = `https://codesandbox.io/s/${sandbox.id}`;
1414
jsonFile.main = sandbox.entry;

0 commit comments

Comments
 (0)