Add product source job resolver
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user