Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkamyshev committed Jul 30, 2024
1 parent d400649 commit cb746f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/website/docs/contracts/size_chart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const props = defineProps({
},
});
const chartData = computed(() => {
const sortedSizes = [...props.sizes]
const sortedSizes = [...props.sizes];
sortedSizes.sort((a, b) => a.size - b.size);
return {
Expand Down

0 comments on commit cb746f3

Please sign in to comment.