Skip to content

Commit 6f7ed2b

Browse files
committed
prettier
1 parent a22bb5c commit 6f7ed2b

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

components/CostCalculator.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ const cf = computed(() => {
4747
storageCost: storedGB.value * 0.015,
4848
};
4949
obj.total =
50-
obj.workerInvocationCost + obj.planCost + obj.storageRequestCost + obj.storageCost;
50+
obj.workerInvocationCost +
51+
obj.planCost +
52+
obj.storageRequestCost +
53+
obj.storageCost;
5154
return obj;
5255
});
5356

0 commit comments

Comments
 (0)