Skip to content

Commit

Permalink
bugfix: プライベートチャンネルでフィードバック時にエラーが発生する不具合を修正する
Browse files Browse the repository at this point in the history
  • Loading branch information
Karibash committed Dec 2, 2024
1 parent 369f937 commit fded0cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class SlackChannelIdInvalidFormatError extends CustomError({

export type SlackChannelIdError = SlackChannelIdInvalidFormatError;

const schema = v.pipe(v.string(), v.regex(/^([CD]).*$/));
const schema = v.pipe(v.string(), v.regex(/^([CDG]).*$/));

type Properties = {
value: v.InferOutput<typeof schema>;
Expand Down

0 comments on commit fded0cd

Please sign in to comment.