chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-10 04:30:04 +00:00
parent 3753601f87
commit a9a2a597d5
2 changed files with 176 additions and 174 deletions
@@ -9,7 +9,9 @@ const context = createContext<{
export function PathFormatterProvider(props: ParentProps<{ path: string | undefined }>) { export function PathFormatterProvider(props: ParentProps<{ path: string | undefined }>) {
return ( return (
<context.Provider value={{ path: () => props.path || process.cwd(), format: (input) => formatPath(input, props.path) }}> <context.Provider
value={{ path: () => props.path || process.cwd(), format: (input) => formatPath(input, props.path) }}
>
{props.children} {props.children}
</context.Provider> </context.Provider>
) )