fix: remove explore context and migrate query to orpc contract (#32320)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
yyh
2026-02-14 16:18:26 +08:00
committed by GitHub
parent db17119a96
commit 1f74a251f7
29 changed files with 787 additions and 827 deletions

8
web/types/try-app.ts Normal file
View File

@ -0,0 +1,8 @@
import type { App } from '@/models/explore'
export type TryAppSelection = {
appId: string
app: App
}
export type SetTryAppPanel = (showTryAppPanel: boolean, params?: TryAppSelection) => void