Arthur Bodera
Arthur Bodera
### What happened? Given a content script loaded like so: ```ts import type { PlasmoCSConfig } from "plasmo"; import scriptUrl from "url:~/contents/injectSomething.js"; export const config: PlasmoCSConfig = { matches: ["http://localhost:3000/*",...
### What happened? Here's how plasmo defines PlasmoCSConfig: ```ts type ManifestContentScript = ({ world: "MAIN"; persist_across_sessions?: boolean; } | { world?: "ISOLATED"; match_about_blank?: boolean; match_origin_as_fallback?: boolean; /** * https://developer.chrome.com/docs/extensions/mv3/content_scripts/#matchAndGlob */...
## Steps 1. Have SDK configured with: ```ts mixpanel.init('...', { api_host: 'https://example.com/mixpanel/', api_routes: { engage: "engage", groups: "groups", track: "track", } } ``` 2. Enable session recording with `mixpanel.start_session_recording();` ##...
**Describe the bug** `clear()` method not implemented See: https://www.inngest.com/docs/features/realtime/react-hooks ``` clear: () => void - A function to clear all accumulated message data from the internal state. This includes data,...
**Describe the bug** When the hook is initially disabled, it will never re-connect if enabled flips to `true`. **To Reproduce** ```ts const [useRealtime, setUseRealtime] = useState(false); const { latestData, state:...
## Is your feature request related to a problem? Please describe I'm having trouble using `AsyncLocalStorage` in my functions and steps because of async nature of step invocation and missing...
## Describe the bug When throwing errors in handlers/steps, the onError() handler does not receive the correct `error.name` - instead all errors become `Error()`. **This also applies to inngest's own...