Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
bholmesdev authored and github-actions[bot] committed Jun 7, 2022
1 parent a83d581 commit c5db640
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/astro/src/core/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,10 @@ export function devStart({
network,
'',
];
return messages.filter((msg) => typeof msg === 'string').map((msg) => ` ${msg}`).join('\n');
return messages
.filter((msg) => typeof msg === 'string')
.map((msg) => ` ${msg}`)
.join('\n');
}

export function telemetryNotice() {
Expand Down

0 comments on commit c5db640

Please sign in to comment.