Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
shakkernerd committed Jan 2, 2025
1 parent 0ac8e66 commit 22e4a5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/client-twitter/src/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ export const DEFAULT_MAX_TWEET_LENGTH = 280;
const twitterUsernameSchema = z
.string()
.min(1, "An X/Twitter Username must be at least 1 characters long")
.max(15, "n X/Twitter Username cannot exceed 15 characters")
.max(15, "An X/Twitter Username cannot exceed 15 characters")
.regex(
/^[A-Za-z0-9_]*$/,
"n X Username can only contain letters, numbers, and underscores"
"An X Username can only contain letters, numbers, and underscores"
);

/**
Expand Down

0 comments on commit 22e4a5e

Please sign in to comment.