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

View File

@@ -9,7 +9,9 @@ const context = createContext<{
export function PathFormatterProvider(props: ParentProps<{ path: string | undefined }>) {
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}
</context.Provider>
)