diff --git a/reminder-dashboard/src/components/App/Mentions.tsx b/reminder-dashboard/src/components/App/Mentions.tsx index 13de4c1..5ea9d7b 100644 --- a/reminder-dashboard/src/components/App/Mentions.tsx +++ b/reminder-dashboard/src/components/App/Mentions.tsx @@ -16,7 +16,9 @@ export const Mentions = ({ input }) => { collection: [ { trigger: "@", - values: (roles || []).map(({ id, name }) => ({ key: name, value: id })), + values: (roles || []) + .filter((role) => role.name === "@everyone") + .map(({ id, name }) => ({ key: name, value: id })), allowSpaces: true, selectTemplate: (item) => `<@&${item.original.value}>`, menuItemTemplate: (item) => `@${item.original.key}`, diff --git a/reminder-dashboard/src/components/Guild/GuildTodos.tsx b/reminder-dashboard/src/components/Guild/GuildTodos.tsx index a811b52..6165c9f 100644 --- a/reminder-dashboard/src/components/Guild/GuildTodos.tsx +++ b/reminder-dashboard/src/components/Guild/GuildTodos.tsx @@ -21,7 +21,7 @@ export const GuildTodos = () => { <>

Server

{sortedTodos - .filter((todo) => todo.channel_id == null) + .filter((todo) => todo.channel_id === null) .map((todo) => ( <> @@ -33,7 +33,7 @@ export const GuildTodos = () => { <>

#{channel.name}

{sortedTodos - .filter((todo) => todo.channel_id == channel.id) + .filter((todo) => todo.channel_id === channel.id) .map((todo) => ( <> diff --git a/reminder-dashboard/src/components/Reminder/ImagePicker.tsx b/reminder-dashboard/src/components/Reminder/ImagePicker.tsx index 9713962..f78de00 100644 --- a/reminder-dashboard/src/components/Reminder/ImagePicker.tsx +++ b/reminder-dashboard/src/components/Reminder/ImagePicker.tsx @@ -37,6 +37,11 @@ const ImagePickerModal = ({ setModalOpen, setImage }) => { }} onSubmitText={"Save"} > +

+ Please note: if you attach an image directly from Discord, it will not be visible in + the dashboard, but will be visible on reminders. Other image-sharing sites such as + Imgur don't have this issue. +