From a84a13c76d99f1e6f4505d43108a4111749e5035 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Sat, 25 May 2024 19:14:54 -0400 Subject: Custom error handler and some misc fixes --- frontend/src/components/DeckyToaster.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'frontend/src/components/DeckyToaster.tsx') diff --git a/frontend/src/components/DeckyToaster.tsx b/frontend/src/components/DeckyToaster.tsx index 00b7b4db..1cb51d65 100644 --- a/frontend/src/components/DeckyToaster.tsx +++ b/frontend/src/components/DeckyToaster.tsx @@ -1,4 +1,5 @@ -import { ToastData, joinClassNames } from '@decky/ui'; +import type { ToastData } from '@decky/api'; +import { joinClassNames } from '@decky/ui'; import { FC, useEffect, useState } from 'react'; import { ReactElement } from 'react-markdown/lib/react-markdown'; @@ -28,7 +29,7 @@ const DeckyToaster: FC = () => { } useEffect(() => { // not actually node but TS is shit - let interval: NodeJS.Timer | null; + let interval: NodeJS.Timeout | number | null; if (renderedToast) { interval = setTimeout( () => { -- cgit v1.2.3