From 44356be37306ca2b7f4e7cecce7932716b1bb7fc Mon Sep 17 00:00:00 2001 From: Mike Fix Date: Mon, 1 Oct 2018 22:31:15 -0700 Subject: [PATCH] make BackgroundSelect extend Component not Pure w/ custom update --- components/BackgroundSelect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/BackgroundSelect.js b/components/BackgroundSelect.js index 986253c..5a36544 100644 --- a/components/BackgroundSelect.js +++ b/components/BackgroundSelect.js @@ -8,7 +8,7 @@ import { COLORS, DEFAULT_BG_COLOR } from '../lib/constants' import { validateColor } from '../lib/colors' import { parseRGBA, capitalizeFirstLetter } from '../lib/util' -class BackgroundSelect extends React.PureComponent { +class BackgroundSelect extends React.Component { constructor(props) { super(props) this.state = { isVisible: false, mounted: false }