Create app from csv bug

Hey,

there is a bug in the auto app builder from csv. When the wizzard creates the app the auto-generated sql query looks like:

select *
from 63c920fe37719ab7b8d31
where undefined ilike {{'%' + searchInput.value + '%'}}
order by _id asc

This is not a valid sql query (and will not work in retool) because the table name starts with a number. Has to be quoted as in:
select *
from "63c920fe37719ab7b8d31"

Thank you for flagging this bug! I'll submit a request to our team for a fix :slightly_smiling_face: