Skip to content

Commit 04094f9

Browse files
committed
fix: fix prettier errors
1 parent b9924de commit 04094f9

File tree

1 file changed

+2
-2
lines changed
  • apps/bolt-site/components/bolt-select

1 file changed

+2
-2
lines changed

apps/bolt-site/components/bolt-select/utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ export function createSelectOptionData(options) {
5353
const selectOptions = Array.from(options);
5454
const newOptions = [];
5555

56-
selectOptions.forEach(function(option){
56+
selectOptions.forEach(function(option) {
5757
const { value, selected, text } = option;
5858

5959
newOptions.push({
6060
label: text || null,
6161
value: value || null,
62-
selected: selected || false
62+
selected: selected || false,
6363
});
6464
});
6565

0 commit comments

Comments
 (0)