The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: follow news channel update not triggering a re-render

Luna 0b00de25 e3abcd12

+7 -6
+7 -6
app/dashboard/[guildId]/updates.component.tsx
··· 60 60 onSuccess={() => { 61 61 guildStore.setState((g) => { 62 62 if (!g) return g; 63 - 64 - g.follownewsChannel = { 65 - name: g.channels!.find((c) => c.id === channelId)!.name, 66 - id: channelId! 63 + const channel = g.channels?.find((c) => c.id === channelId); 64 + return { 65 + ...g, 66 + follownewsChannel: { 67 + name: channel?.name ?? "", 68 + id: channelId! 69 + } 67 70 }; 68 - 69 - return g; 70 71 }); 71 72 }} 72 73 isDisabled={!channelId}