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

Configure Feed

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

fix some modal contents

Luna 5d996fd9 a7d6a81b

+6 -6
+2 -2
app/dashboard/[guildId]/custom-commands/delete.component.tsx
··· 20 20 21 21 return ( 22 22 <> 23 - <Tooltip content="Delete tag" closeDelay={0}> 23 + <Tooltip content="Delete Tag" closeDelay={0}> 24 24 <Button 25 25 isIconOnly 26 26 color="danger" ··· 35 35 <Modal 36 36 buttonName="Delete" 37 37 variant="danger" 38 - title={"Delete tag: " + name} 38 + title={"Delete Tag: " + name} 39 39 show={open} 40 40 onClose={() => setOpen(false)} 41 41 onSubmit={() => {
+4 -4
app/dashboard/[guildId]/notifications/delete.component.tsx
··· 20 20 21 21 return ( 22 22 <> 23 - <Tooltip content="Delete notification" closeDelay={0}> 23 + <Tooltip content="Delete Notification" closeDelay={0}> 24 24 <Button 25 25 isIconOnly 26 26 color="danger" ··· 28 28 isDisabled={!id} 29 29 > 30 30 <HiTrash className="h-5 w-5" /> 31 - <span className="sr-only">Delete selected tag</span> 31 + <span className="sr-only">Delete selected notification</span> 32 32 </Button> 33 33 </Tooltip> 34 34 35 35 <Modal 36 36 buttonName="Delete" 37 37 variant="danger" 38 - title={"Delete tag: " + name} 38 + title={"Delete YouTube Notification: " + name} 39 39 show={open} 40 40 onClose={() => setOpen(false)} 41 41 onSubmit={() => { ··· 51 51 if (id) removeNotification(id); 52 52 }} 53 53 > 54 - Are you sure you want to delete the {'"'}{name}{'"'} tag? It will be gone forever, probably, who knows. 54 + Are you sure you want to delete the {'"'}{name}{'"'} channel from posting notifications? It will be gone forever, probably, who knows. 55 55 </Modal> 56 56 </> 57 57 );