V2Wizard: Set pkg recommendations expandable to open by default

This makes the pkg recommendations expandable open by default and updates the tests accordingly.
This commit is contained in:
regexowl 2024-05-22 08:59:28 +02:00 committed by Klara Simickova
parent 3018d64df6
commit 12fc6b9841
3 changed files with 2 additions and 12 deletions

View file

@ -27,7 +27,7 @@ const PackageRecommendations = () => {
const undebouncedPackages = useAppSelector(selectPackages);
const packages = useDebounce(undebouncedPackages);
const [isExpanded, setIsExpanded] = useState(false);
const [isExpanded, setIsExpanded] = useState(true);
const [fetchRecommendedPackages, { data, isSuccess, isLoading, isError }] =
useRecommendPackageMutation();