Skip to content

Commit fb367f4

Browse files
committed
ESLint
1 parent 2cf7b19 commit fb367f4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

components/chargebee/chargebee.app.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ export default {
2424
const itemPrices = await this.getItemPrices();
2525
return itemPrices.list
2626
.filter(({ item_price: { item_type } }) => item_type === "plan")
27-
.map(({ item_price: { name, id } }) => ({
27+
.map(({
28+
item_price: {
29+
name, id,
30+
},
31+
}) => ({
2832
label: name,
2933
value: id,
3034
}));

0 commit comments

Comments
 (0)