diff --git a/frontend/src/types/clients.ts b/frontend/src/types/clients.ts index 1393909..946e681 100644 --- a/frontend/src/types/clients.ts +++ b/frontend/src/types/clients.ts @@ -112,6 +112,7 @@ export function randomConfigs(user: string): Config { } export function createClient(json?: Partial): Client { + defaultClient.name = RandomUtil.randomSeq(8) const defaultObject: Client = { ...defaultClient, ...(json || {}) } return defaultObject }