pc.responsive_grid column component can't take in a list of vars
Describe the bug I try to pass in a State variable based on some user input into the "columns" component of pc.responsive_grid and I get a typeError. It expects a List[int] type but when I pass in a List of integers that are state vars it errors.
TypeError: Invalid var passed for prop columns, expected type pynecone.var.Var[typing.List[int]], got value [BaseVar(name='size', type_=<class 'int'>, state='state', is_local=False, is_string=False)] of type <class 'list'>.
Expected behavior Expect my pc.responsive_grid to update column size based on input into a State var.
Screenshots

** Specifics (please complete the following information):**
- Python Version: 3.11
- Pynecone Version: 1.10
- OS:
- Browser (Optional):
Additional context Add any other context about the problem here.
Got it, I can fix this for the next release
closing this as it was fixed