reflex-examples icon indicating copy to clipboard operation
reflex-examples copied to clipboard

Getting 'Could not determine storage type' error in gpt app

Open AmazingAbhi opened this issue 1 year ago • 1 comments

Hi Team,

I am able to generate the signup page, however when user signs up in gpt page and gets redirected to 'home' page, I am getting following error regarding storage type on Python 3.8:

image

Seems to be related to this snippet for linking to data table:

                    pc.data_table(
                        data=State.questions,
                        columns=["Question", "Answer"],
                        pagination=True,
                        search=True,
                        sort=True,
                        width="100%",
                    ),

AmazingAbhi avatar Mar 16 '23 06:03 AmazingAbhi