fix(utils): rename talgistOrderParser to taglistOrderParser 🤦

This commit is contained in:
Joxit
2023-05-06 22:55:33 +02:00
parent edb5aa97e8
commit b0ea4e5fb8
2 changed files with 10 additions and 10 deletions

View File

@@ -245,7 +245,7 @@ export const taglistOrderVariants = (taglistOrder) => {
}
};
export function talgistOrderParser(taglistOrder) {
export const taglistOrderParser = (taglistOrder) => {
const orders = taglistOrderVariants(taglistOrder)
.split(';')
.filter((e) => e)
@@ -261,4 +261,4 @@ export function talgistOrderParser(taglistOrder) {
}, {});
return orders;
}
};