Dmitry Mosquid
Dmitry Mosquid
Hey. Here are the reproduction steps: - install [email protected] - run `yarn upgrade ably@^` and select 1.2.50 - run `yarn upgrade ably@^` and select 2.0.3 - The compiler succeeded but...
Hi @VeskeR, No, unfortunately not. Here is the code of my ably provider. ``` import { AblyProvider } from "ably/react"; import * as Ably from "ably"; import { FC }...
I can't make this work: 1. Value property type is `string` while onChange handler receives `FileInfo` 2. Setting `FileInfo` as `value` is causing `Incorrect value` error
@stevesizer thanks for you quick response. Here's how I made it work: ``` const [value, setValue] = useState(); const resetValue = () => { setValue(); }; ... {value && }...
UPD: I was able to "fix" it by changing the timestamp format from ISO string to a Unix timestamp, like so: ``` request.timestamp => timestamp: new Date(request.timestamp).getTime().toString() ``` in apps/server/src/app/reporting/reporting.service.ts
This is the only thing I dislike about SST: - No way to clear the terminal tab - No way to copy debug output if it doesn't fit on one...