diff --git a/inlang/source-code/sdk/src/storage/human-id/human-readable-id.ts b/inlang/source-code/sdk/src/storage/human-id/human-readable-id.ts index 1f29d2eb9e..8836ac0f44 100644 --- a/inlang/source-code/sdk/src/storage/human-id/human-readable-id.ts +++ b/inlang/source-code/sdk/src/storage/human-id/human-readable-id.ts @@ -4,8 +4,8 @@ import { adjectives, animals, adverbs, verbs } from "./words.js" export function randomHumanId() { return `${adjectives[Math.floor(Math.random() * 256)]}_${ - adjectives[Math.floor(Math.random() * 256)] - }_${animals[Math.floor(Math.random() * 256)]}_${verbs[Math.floor(Math.random() * 256)]}` + animals[Math.floor(Math.random() * 256)] + }_${verbs[Math.floor(Math.random() * 256)]}_${adverbs[Math.floor(Math.random() * 256)]}` } export function humanIdHash(value: string, offset: number = 0) {