New source found from dndbeyond.com
This commit is contained in:
@@ -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}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user