Skip to content

Commit

Permalink
updated customID requirement error message
Browse files Browse the repository at this point in the history
  • Loading branch information
pakkographic committed Sep 2, 2024
1 parent 05d058c commit b8e53de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/Util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class Util {
if (!regExpCheck.test(component.customID))
throw new Error(
"Invalid component, customID property is considered invalid, " +
"requirements: \"1-32 characters containing no capital letters, spaces, or symbols other than - and _\"."
"requirements: \"1-32 characters containing no spaces, or symbols other than - and _\"."
);
await this.#client.rest.channels
.createReaction(
Expand Down

0 comments on commit b8e53de

Please sign in to comment.