ArrowTypeError: ("Expected bytes, got a 'dict' object", 'Conversion failed for column place with type object')

Please can anyone explain for me the following error. I extract tweets from twitter using twint and all things are good but once the limit reach 3000, i get the following error.
This is my code: :point_down:

import streamlit as st
import twint
c = twint.Config()
c.Search = β€œ#SPAC”
c.Pandas = True
c.Hide_output = True
c.Limit = 1000
with st.spinner(β€˜Wait Loading!’):
twint.run.Search(c)
df = twint.storage.panda.Tweets_df
st.write(df)