Remove react-immutable-pure-component

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
Alex Gleason
2024-10-08 23:15:28 -05:00
committed by marcin mikołajczak
parent 9cec2324a0
commit 973fb0c84b
3 changed files with 2 additions and 9 deletions

View File

@@ -1,7 +1,6 @@
import clsx from 'clsx';
import { List as ImmutableList } from 'immutable';
import React from 'react';
import ImmutablePureComponent from 'react-immutable-pure-component';
import React, { PureComponent } from 'react';
import AutosuggestEmoji from 'pl-fe/components/autosuggest-emoji';
import Icon from 'pl-fe/components/icon';
@@ -35,7 +34,7 @@ interface IAutosuggestInput extends Pick<React.HTMLAttributes<HTMLInputElement>,
theme?: InputThemes;
}
class AutosuggestInput extends ImmutablePureComponent<IAutosuggestInput> {
class AutosuggestInput extends PureComponent<IAutosuggestInput> {
static defaultProps = {
autoFocus: false,