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
@@ -1,5 +1,4 @@
import React, { FC } from "react";
import { useDispatch } from "react-redux";
import {
Constants,
@@ -8,6 +7,7 @@ import {
import { Button } from "~/components/Button";
import { useSidebar } from "~/contexts/Sidebar/Sidebar";
import { useDispatch } from "~/hooks/useDispatch";
import { Header } from "~/subApps/sheet/components/Sidebar/components/Header";
import { PaneInitFailureContent } from "~/subApps/sheet/components/Sidebar/components/PaneInitFailureContent";
import {
@@ -40,7 +40,7 @@ export const PreferencesHitPointConfirmPane: FC<Props> = ({ identifiers }) => {
switch (hitPointType) {
case Constants.PreferenceHitPointTypeEnum.FIXED:
return (
<React.Fragment>
<>
<Header>Fixed Hit Points</Header>
<div className="change-preference-content">
<p>
@@ -49,12 +49,12 @@ export const PreferencesHitPointConfirmPane: FC<Props> = ({ identifiers }) => {
</p>
<p>Any rolled hit point totals will be lost.</p>
</div>
</React.Fragment>
</>
);
case Constants.PreferenceHitPointTypeEnum.MANUAL:
return (
<React.Fragment>
<>
<Header>Manual Hit Points</Header>
<div className="change-preference-content">
<p>
@@ -65,7 +65,7 @@ export const PreferencesHitPointConfirmPane: FC<Props> = ({ identifiers }) => {
rolled values.
</p>
</div>
</React.Fragment>
</>
);
}