Skip to content

Commit

Permalink
fix: remove extra bracket in string
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricekleine committed Mar 7, 2023
1 parent e971be3 commit 1cdd7b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/object-properties.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default {

const sorter =
sorters[
`${order}${isCaseInsensitive ? "I" : ""}${isNaturalOrder ? "N" : ""}}`
`${order}${isCaseInsensitive ? "I" : ""}${isNaturalOrder ? "N" : ""}`
]

return {
Expand Down

0 comments on commit 1cdd7b2

Please sign in to comment.