Remove as any workaround from smart components

This commit is contained in:
Evan Hahn 2022-02-25 17:59:43 -06:00 committed by GitHub
parent 74ce24db68
commit e4be12bced
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 16 additions and 38 deletions

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 Signal Messenger, LLC
// Copyright 2019-2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
@ -6,19 +6,14 @@ import { Provider } from 'react-redux';
import type { Store } from 'redux';
import type { ExternalProps } from '../smart/ShortcutGuideModal';
import { SmartShortcutGuideModal } from '../smart/ShortcutGuideModal';
// Workaround: A react component's required properties are filtering up through connect()
// https://github.com/DefinitelyTyped/DefinitelyTyped/issues/31363
/* eslint-disable @typescript-eslint/no-explicit-any */
const FilteredShortcutGuideModal = SmartShortcutGuideModal as any;
/* eslint-enable @typescript-eslint/no-explicit-any */
export const createShortcutGuideModal = (
store: Store,
props: Record<string, unknown>
props: ExternalProps
): React.ReactElement => (
<Provider store={store}>
<FilteredShortcutGuideModal {...props} />
<SmartShortcutGuideModal {...props} />
</Provider>
);