mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-30 08:27:59 +00:00
Move ui-identicon -> react-identicon (#165)
* Move ui-identicon -> react-identicon * ui-identicon import fix * Update README package links * Update doc sidebar links * Adjust react-qr signatures, CHANGELOG
This commit is contained in:
@@ -23,7 +23,7 @@ interface State {
|
||||
frames: string[];
|
||||
frameIdx: number;
|
||||
image: string | null;
|
||||
timerId: NodeJS.Timeout | null;
|
||||
timerId: number | null;
|
||||
valueHash: string | null;
|
||||
}
|
||||
|
||||
@@ -90,7 +90,7 @@ class Display extends React.PureComponent<Props, State> {
|
||||
|
||||
public componentDidMount (): void {
|
||||
this.setState({
|
||||
timerId: setInterval(this.nextFrame, FRAME_DELAY)
|
||||
timerId: window.setInterval(this.nextFrame, FRAME_DELAY)
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user