Remove as any
workaround from smart components
This commit is contained in:
parent
74ce24db68
commit
e4be12bced
6 changed files with 16 additions and 38 deletions
|
@ -1,4 +1,4 @@
|
|||
// Copyright 2021 Signal Messenger, LLC
|
||||
// Copyright 2021-2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import React from 'react';
|
||||
|
@ -9,17 +9,11 @@ import type { Store } from 'redux';
|
|||
import type { PropsType } from '../smart/ConversationView';
|
||||
import { SmartConversationView } from '../smart/ConversationView';
|
||||
|
||||
// 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 FilteredConversationView = SmartConversationView as any;
|
||||
/* eslint-disable @typescript-eslint/no-explicit-any */
|
||||
|
||||
export const createConversationView = (
|
||||
store: Store,
|
||||
props: PropsType
|
||||
): React.ReactElement => (
|
||||
<Provider store={store}>
|
||||
<FilteredConversationView {...props} />
|
||||
<SmartConversationView {...props} />
|
||||
</Provider>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue