Skip to content

Commit

Permalink
Merge pull request #1175 from threefoldtech/development_fix_k8s_clust…
Browse files Browse the repository at this point in the history
…er_token

Remove the space from the generatePassword function.
  • Loading branch information
Mahmoud-Emad authored Oct 4, 2023
2 parents 4c63f16 + 18a91c8 commit 66c0c34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/playground/src/utils/strings.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { randomChoice } from "@threefold/grid_client";

export function generatePassword(length = 12): string {
return generateString("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 #$%!", length);
return generateString("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789#$%!", length);
}

export interface GenerateNameOptions {
Expand Down

0 comments on commit 66c0c34

Please sign in to comment.