### I'm using React Router as a framework ### Reproduction `href()` util doesn't replace splat (`*`) ### System Info ```shell react-router 7.2.0 ``` ### Used Package Manager npm ### Expected Behavior ```ts href("/foo/*", { "*": "bar" }) // "/foo/bar" ``` ### Actual Behavior ```ts href("/foo/*", { "*": "bar" }) // "/foo/*" ```