chore: update all dependencies to latest versions

This commit is contained in:
2026-06-05 23:11:45 +02:00
parent ad008bf4dd
commit 6ac76f1d80
10 changed files with 2022 additions and 3803 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>;
}