From 8ca1460d574baeb65053ca004dab7621a9bc3d51 Mon Sep 17 00:00:00 2001 From: Simen Wiik Date: Mon, 16 Dec 2024 15:36:34 +0100 Subject: [PATCH] fix: change "adjective_adjective_animal_verb" to "adjective_animal_verb_adverb" --- .../source-code/sdk/src/storage/human-id/human-readable-id.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) {