Jason Pickens
Jason Pickens
`Params` is: ``` export type Params = Record; ``` But if you get an optional param that is missing you get `undefined`. Either the type of `Params` should be: ```...
I just noticed while debugging that the `Match` has `route` and `routes` properties. Only `routes` is on the TS type. Was `route` meant to be part of the public API...
### What version of React Router are you using? 6.22.0 ### Steps to Reproduce ``` import * as React from "react"; import { createContext, Dispatch, ReactNode, SetStateAction, useContext, useState, }...
`usePreloadedQuery` will log a warning if it is passed a preloaded query that was created with a different environment than the one that is currently in context. It says that...
**Describe the bug** Version: 22.0.0 **To Reproduce** ```ts import {Project, ScriptKind, SyntaxKind} from "ts-morph"; const project = new Project({}); // This works. //const className = "Thing" // This doesn't work....
These examples helped me a lot with working out how to setup a multi project build. I was missing the dependsOn on the root project which makes a big difference....
If I enable sourcemaps in vite then there are no sourcemaps for certain files like `background.js` and there are a bunch of warnings: ``` rendering chunks (1)...Sourcemap is likely to...
A content script containing: ``` function setSelectedElement(el) { // do something with the selected element } ``` Should be able to be executed by: ``` chrome.devtools.inspectedWindow.eval("setSelectedElement($0)", { useContentScriptContext: true });...
How do I run all the tests? `pnpm run test` doesn't seem to run any of the E2E tests in `./__tests__` or in other places like `src/html-inputs/__tests__`.