Skip to content

Commit

Permalink
forgot a quote
Browse files Browse the repository at this point in the history
  • Loading branch information
srclosson committed Sep 22, 2023
1 parent 35b171c commit 934a4dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/divPanelChild.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class DivPanelChild extends Component<DivPanelChildProps, State> {

shouldComponentUpdate = (prevProps: DivPanelChildProps, prevState: State): boolean => {
const truth =
((typeof prevProps !== "undefined" && typeof this.props !== "undefined) &&
((typeof prevProps !== "undefined" && typeof this.props !== "undefined") &&
(JSON.stringify(prevProps) !== JSON.stringify(this.props))) ||
prevProps.data.state === 'Done' ||
prevProps.data.state === 'Streaming';
Expand Down

0 comments on commit 934a4dc

Please sign in to comment.