cognitive-social-crm icon indicating copy to clipboard operation
cognitive-social-crm copied to clipboard

Random duplication of tweets

Open mubashirqasim opened this issue 5 years ago • 0 comments

This app is randomly duplicating tweets for some weird reason.

For example, when you keep only 3 tweets in the sample data, dashboard reports 6.

Any idea what might be causing this?

Here is the code I replaced in server/src/data/SampleTweets.ts

const tweets = [
  {
    text: '@JetBlue @FLLFlyer Are conditions always this bad at your airport? (Crowds, heat, mess, broken equipment)',
    post_date: '2017-06-08T22:37:52.844Z',
  },
  {
    text: '@gregkoch1 @united I miss continental airlines',
    post_date: '2017-06-08T22:37:52.844Z',
  },
  {
    text: '@united my flight #4806 got cancelled and ur people at the gate said there\'s no way to compensate. Wanna earn some good PR & help me out?',
    post_date: '2017-06-08T22:37:52.844Z',
  },
];

export default tweets;

mubashirqasim avatar May 29 '19 05:05 mubashirqasim