Maciek Sitkowski

Results 6 comments of Maciek Sitkowski

Hello 👋 I've just opened a small PR with migration of remaining parts of the Landing component. If I find some more time over the weekend, and there will still...

Thanks both for explaining and migrating to `react-router-dom`, cheers! 🙇

+1 it would be really nice to have such feature, especially when making atomic changes to multiple documents

Here's what works for me: ```jsonc // tsconfig.json "baseUrl": ".", "paths": { "~": ["./app"], "~/*": ["./app/*"] } ``` ```jsonc // components.json "aliases": { "components": "~", "utils": "~/lib/utils" } ```

@MnemosyneMei, you can try declaring the module. I've got something like this, and it works fine, without using `@ts-ignore` ```ts // types.d.ts declare module 'html2pdf.js'; // then import * as...

I encountered the same issue, and it seems that it is related to `Select` type. Currently, if we use only `select` we can pass whatever we want. However, when we...