Add product source job resolver
Build, Push and Deploy / build (push) Successful in 7s
Build, Push and Deploy / deploy (push) Successful in 18s

This commit is contained in:
2026-09-13 18:00:35 +08:00
parent 807b1252ad
commit 293e346f0a
19 changed files with 269 additions and 64 deletions
+3 -3
View File
@@ -11,11 +11,11 @@ import { useWordCloudFocus } from '../hooks/useWordCloudFocus';
import styles from './PersonalSearchPage.module.css';
interface PersonalSearchPageProps {
cloudId: string;
productId: string;
}
export function PersonalSearchPage({ cloudId }: PersonalSearchPageProps) {
const cloudState = useCloud(cloudId);
export function PersonalSearchPage({ productId }: PersonalSearchPageProps) {
const cloudState = useCloud(productId);
const cloud = cloudState.cloud;
const [query, setQuery] = useState('');
const [hasNotFound, setHasNotFound] = useState(false);