From 35c017a26f4f91b80f0c6ba75f7512b26bc6c7be Mon Sep 17 00:00:00 2001 From: Aryan Pokharkar Date: Sun, 27 Oct 2024 14:23:26 +0530 Subject: [PATCH] fix: Discord character limit changed to avoid message truncation --- .../components/launches/providers/discord/discord.provider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/src/components/launches/providers/discord/discord.provider.tsx b/apps/frontend/src/components/launches/providers/discord/discord.provider.tsx index 2c22647a..b3c1bb32 100644 --- a/apps/frontend/src/components/launches/providers/discord/discord.provider.tsx +++ b/apps/frontend/src/components/launches/providers/discord/discord.provider.tsx @@ -17,5 +17,5 @@ export default withProvider( undefined, DiscordDto, undefined, - 280 + 1980 );