Prepare for upgrade to React 19

Co-authored-by: ayumi-signal <ayumi@signal.org>
This commit is contained in:
Jamie
2025-12-23 13:42:56 -08:00
committed by GitHub
parent fe94991ea2
commit b405e3d83d
716 changed files with 3129 additions and 2881 deletions

View File

@@ -20,22 +20,22 @@ const defaultProps = {
tryAgain: action('tryAgain'),
};
export const _TooManyDevices = (): JSX.Element => (
export const _TooManyDevices = (): React.JSX.Element => (
<InstallScreenErrorStep
{...defaultProps}
error={InstallScreenError.TooManyDevices}
/>
);
export const _TooOld = (): JSX.Element => (
export const _TooOld = (): React.JSX.Element => (
<InstallScreenErrorStep {...defaultProps} error={InstallScreenError.TooOld} />
);
export const __TooOld = (): JSX.Element => (
export const __TooOld = (): React.JSX.Element => (
<InstallScreenErrorStep {...defaultProps} error={InstallScreenError.TooOld} />
);
export const _ConnectionFailed = (): JSX.Element => (
export const _ConnectionFailed = (): React.JSX.Element => (
<InstallScreenErrorStep
{...defaultProps}
error={InstallScreenError.ConnectionFailed}