Skip to content

Commit

Permalink
feat: remove to lower case from slug generation
Browse files Browse the repository at this point in the history
Signed-off-by: ryanwolhuter <dev@ryanwolhuter.com>
  • Loading branch information
ryanwolhuter committed Aug 5, 2024
1 parent 2759ec0 commit 180e747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/slug.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export function makeNodeSlugFromNodeName(name: string) {
return name.replaceAll(/\s/g, '-').toLowerCase();
return name.replaceAll(/\s/g, '-');
}

0 comments on commit 180e747

Please sign in to comment.