From 44bb023b804b0ab360214360a3947935fb41c86c Mon Sep 17 00:00:00 2001 From: AAGaming Date: Wed, 15 Oct 2025 00:31:12 -0400 Subject: React 19 support (#818) --- frontend/src/components/QuickAccessVisibleState.tsx | 4 ++-- frontend/src/components/WithSuspense.tsx | 2 +- frontend/src/components/modals/filepicker/FilePickerError.tsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'frontend/src/components') diff --git a/frontend/src/components/QuickAccessVisibleState.tsx b/frontend/src/components/QuickAccessVisibleState.tsx index f5c05061..f90c24b4 100644 --- a/frontend/src/components/QuickAccessVisibleState.tsx +++ b/frontend/src/components/QuickAccessVisibleState.tsx @@ -1,10 +1,10 @@ -import { FC, ReactNode, createContext, useContext, useState } from 'react'; +import { FC, PropsWithChildren, createContext, useContext, useState } from 'react'; const QuickAccessVisibleState = createContext(false); export const useQuickAccessVisible = () => useContext(QuickAccessVisibleState); -export const QuickAccessVisibleStateProvider: FC<{ tab: any; children: ReactNode }> = ({ children, tab }) => { +export const QuickAccessVisibleStateProvider: FC> = ({ children, tab }) => { const initial = tab.initialVisibility; const [visible, setVisible] = useState(initial); // HACK but i can't think of a better way to do this diff --git a/frontend/src/components/WithSuspense.tsx b/frontend/src/components/WithSuspense.tsx index 153bec8d..d6281e3e 100644 --- a/frontend/src/components/WithSuspense.tsx +++ b/frontend/src/components/WithSuspense.tsx @@ -10,7 +10,7 @@ interface WithSuspenseProps { const WithSuspense: FunctionComponent = (props) => { const propsCopy = { ...props }; delete propsCopy.children; - (props.children as ReactElement)?.props && Object.assign((props.children as ReactElement).props, propsCopy); // There is probably a better way to do this but valve does it this way so ¯\_(ツ)_/¯ + (props.children as ReactElement)?.props && Object.assign((props.children as ReactElement).props, propsCopy); // There is probably a better way to do this but valve does it this way so ¯\_(ツ)_/¯ return (