New source found from dndbeyond.com

This commit is contained in:
2025-06-05 01:00:10 -07:00
parent 3954b12f5d
commit 451d940294
14 changed files with 88 additions and 35 deletions
@@ -287,7 +287,11 @@ export const ClassChoose: FC<ClassChooseProps> = ({
};
return (
<div className={clsx([styles.page, className])} {...props}>
<div
className={clsx([styles.page, className])}
{...props}
data-testid="chooseClassSection"
>
{showHeader && (
<>
<PortraitName />
@@ -400,7 +404,10 @@ export const ClassChoose: FC<ClassChooseProps> = ({
);
})
) : (
<p className={styles.notFound}>No Results Found</p>
<p className={styles.notFound}>
No Class options available. Return to the <strong>Home</strong>{" "}
tab to enable more source categories.
</p>
)}
</>
)}