chore: update all dependencies to latest versions

This commit is contained in:
2026-06-05 22:41:37 +02:00
parent ad008bf4dd
commit fc5b290c5e
10 changed files with 2111 additions and 3644 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ import { LinkNotificationToTask } from "./LinkNotificationToTask";
import { Page, UniversalInboxPreferences } from "../types";
import { default as dayjs, extend } from "dayjs";
import { MutatePromise } from "@raycast/utils";
import { useMemo, ReactElement } from "react";
import { useMemo, ReactNode } from "react";
import { handleErrors } from "../api";
import { TaskStatus } from "../task";
import utc from "dayjs/plugin/utc";
@@ -15,7 +15,7 @@ extend(utc);
interface NotificationActionsProps {
notification: Notification;
detailsTarget: ReactElement;
detailsTarget: ReactNode;
mutate: MutatePromise<Page<Notification> | undefined>;
}