New source found from dndbeyond.com

This commit is contained in:
2026-07-08 01:00:09 -07:00
parent 9a983a6d7b
commit dcefa0d2f2
2865 changed files with 222467 additions and 49053 deletions
+6 -7
View File
@@ -6,12 +6,11 @@ import { SheetBuilderApp } from "~/tools/js";
export default function Builder() {
const { characterId } = useParams();
const username = useUserName();
let parsedId: number | null = null;
try {
if (characterId) {
parsedId = parseInt(characterId, 10);
}
} catch (e) {}
return <SheetBuilderApp characterId={parsedId} readOnly={!username} />;
return (
<SheetBuilderApp
characterId={parseInt(String(characterId), 10) || null}
readOnly={!username}
/>
);
}