From 4cb3e9c107f0c61478b3f4c754f44361631b7ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zoe=CC=88=20Bijl?= Date: Mon, 20 Oct 2025 18:58:30 +0200 Subject: [PATCH] [chore] undo change to Immutable --- app/javascript/flavours/glitch/components/display_name.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/javascript/flavours/glitch/components/display_name.tsx b/app/javascript/flavours/glitch/components/display_name.tsx index bfd33a2a7..a82cfe01b 100644 --- a/app/javascript/flavours/glitch/components/display_name.tsx +++ b/app/javascript/flavours/glitch/components/display_name.tsx @@ -4,7 +4,6 @@ import React from "react"; import classNames from "classnames"; import ImmutablePropTypes from "react-immutable-proptypes"; -import ImmutablePureComponent from "react-immutable-pure-component"; import { type List } from "immutable"; @@ -21,7 +20,7 @@ interface Props { inline?: boolean, } -export class DisplayName extends ImmutablePureComponent { +export class DisplayName extends React.PureComponent { static propTypes = { onChange: PropTypes.func.isRequired, nameLayout: ImmutablePropTypes.map.isRequired,