Results 5 comments of Joe

@goellner No, the workaround will need to be added in every api route where you use `getT`. The following patch works for me until this issue is resolved: ```typescript //...

If you're using typescript, you can go w/ this ([source](https://github.com/xiaohuoni/antd4-generate-picker/blob/master/antd-ts/src/components/DatePicker.tsx)): ```typescript import { Dayjs } from 'dayjs'; import dayjsGenerateConfig from 'rc-picker/lib/generate/dayjs'; import generatePicker from 'antd/lib/date-picker/generatePicker'; import 'antd/lib/date-picker/style/index'; const DatePicker =...

Thanks @sudo-suhas -- I didn't know you can pass props to the fns and they _won't_ get dropped! @mohak-cf & anyone who stumbles on this in the future -- here's...

@aviral-batra thanks a ton for pointing me in the right direction👌🏻 Here's what I ended up using to programmatically give read-only access to (new) users whether they already exist in...

@BarryThrill `page` is coming from the following: ```python from notion.client import NotionClient client = NotionClient(email="abc", password="xyz") page = client.get_block("https://www.notion.so/your-workspace-main-page") ```