diff --git a/frontend/src/pages/SettingsScheduling.tsx b/frontend/src/pages/SettingsScheduling.tsx index 12749d1f..d3f50d93 100644 --- a/frontend/src/pages/SettingsScheduling.tsx +++ b/frontend/src/pages/SettingsScheduling.tsx @@ -2,7 +2,7 @@ import Notifications from '../components/Notifications'; import SettingsNavigation from '../components/SettingsNavigation'; import Button from '../components/Button'; import PaginationDummy from '../components/PaginationDummy'; -import { useEffect, useState } from 'react'; +import { Fragment, useEffect, useState } from 'react'; import loadSchedule, { ScheduleResponseType } from '../api/loader/loadSchedule'; import loadAppriseNotification, { AppriseNotificationType, @@ -415,11 +415,12 @@ const SettingsScheduling = () => {
{Object.entries(appriseNotification)?.map(([key, { urls, title }]) => { return ( - <> -

{title}

+ +

{title}

+ {urls.map((url: string) => { return ( -

+

{url}

)} +

@@ -451,6 +453,7 @@ const SettingsScheduling = () => { library.

+