chore: generate

This commit is contained in:
opencode-agent[bot]
2026-04-23 19:38:54 +00:00
parent cd93533b1f
commit 24892559ae
2 changed files with 6 additions and 17 deletions

View File

@@ -310,7 +310,10 @@ export const TuiRoutes = lazy(() =>
}),
validator("json", zodObject(TuiEvent.ToastShow.properties)),
async (c) => {
await Bus.publish(TuiEvent.ToastShow, c.req.valid("json") as Schema.Schema.Type<typeof TuiEvent.ToastShow.properties>)
await Bus.publish(
TuiEvent.ToastShow,
c.req.valid("json") as Schema.Schema.Type<typeof TuiEvent.ToastShow.properties>,
)
return c.json(true)
},
)