Skip to content

Commit fe589d8

Browse files
committed
build: v6.10.13
1 parent 9cbd31b commit fe589d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/resources/src/transformers/transformers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const kebabCase = (str: string, keepLeadingDash = false): string => {
3939
* @example toGuid('PlayerName', 'RealmName') // returns 'player-name@realm-name'
4040
*/
4141
export const toGuid = (name: string, realm: string): string =>
42-
kebabCase(`${name}@${realm}`);
42+
`${kebabCase(name)}@${kebabCase(realm)}`;
4343

4444
/**
4545
* Capitalizes the first letter of a string.

0 commit comments

Comments
 (0)