David Richey
David Richey
I was able to resolve this by passing the component I was importing to the `components` prop on the component returned by `getMDXComponent`. Then, no import is necessary.
@themikejr Sure, here is the relevant change I made to my site to get things working: https://github.com/darichey/darichey.com/commit/a841bc6dfa17c05490f22c28f023077f565d38b4#diff-94b274c9bf8b1ec216419d94e28d844d4d0f35e18b743214a4769448534c0918 @melosomelo I am not doing anything special, so it's possible. I'm afraid I'm...
Does the absence of this feature mean that it is impossible for a custom command to pass information back to the IDE to be used in other commands? Is there...
Sorry for polluting this issue, but is there docs on setting? I'm struggling to find them.
Do you mean just that the documentation is missing, but the functionality is present? If so, can you point me in the right direction for getting this working? Thanks.
[Found it](https://github.com/SeleniumHQ/selenium-ide/blob/848d0409eeadf99c71d12a0e0c1e34d89d47d65e/packages/selenium-ide/src/api/v1/playback.js#L62). ```js browser.runtime.sendMessage(seleniumExtId, { uri: "/playback/var", verb: "put", payload: { name: "my_var", contents: "value of var" } }) .then(() => sendResponse(true)) .catch(console.error); return true; ``` Would be great to...
In my case, I don't need to build an appimage, so I can work around this issue by configuring the [targets](https://tauri.app/v1/api/config/#bundleconfig.targets). i.e., ``` // Can't build appimage: https://github.com/tauri-apps/tauri/issues/3323 "targets": ["deb",...
Hi, sorry for the delay here. Unfortunately I don't have the time to continue with this PR. If anyone would like to pick it up and get it over the...
> `GET /channels/-7664835874241559545/` we shouldn't be making a request with this ID regardless of how discord will respond. We're probably accidentally using Snowflake#asLong instead of asString somewhere.
Giving a general type to `flat` requires some type machinery not (yet) available in Flow. The simple case is somewhat easy, and depending on your use case, you might be...