You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This used to work in the version I was using before (1.3.3)
I updated to the version (1.6.2)
And now I have the issue.
Basically I have an array of strings. I go through each item and then I erase it (Backspace).
When it reaches the end of array, it loops back to the first item (loop = true) but then in the new version the cursor jumps to the next line. I have attached two screenshots for it.
This is also the code I am using:
import * as React from "react";
import "./Home.css";
const Typing = require("react-typing-animation").default;
This used to work in the version I was using before (1.3.3)
I updated to the version (1.6.2)
And now I have the issue.
Basically I have an array of strings. I go through each item and then I erase it (Backspace).
When it reaches the end of array, it loops back to the first item (loop = true) but then in the new version the cursor jumps to the next line. I have attached two screenshots for it.
This is also the code I am using:
import * as React from "react";
import "./Home.css";
const Typing = require("react-typing-animation").default;
interface HomeState {
names: string[];
}
class Home extends React.Component<any, HomeState> {
constructor(props: any) {
super(props);
this.state = {
names: ["item1", "item2"]
};
}
}
export default Home;
new version: (bad)
old version: (good)
The text was updated successfully, but these errors were encountered: