fix: SkillsTab barrel export, equipment store reads, LabTab re-export, debug null guards, GrimoireTab loaded state, spire tab switching
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m48s
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m48s
This commit is contained in:
@@ -17,7 +17,7 @@ export function ElementDebug() {
|
||||
|
||||
const handleAddElementalMana = (element: string, amount: number) => {
|
||||
if (addElementMana) {
|
||||
addElementMana(element, amount);
|
||||
addElementMana(element, amount, 100);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -31,7 +31,7 @@ export function ElementDebug() {
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<div className="grid grid-cols-3 sm:grid-cols-4 md:grid-cols-6 gap-2">
|
||||
{Object.entries(elements).map(([id, elem]) => {
|
||||
{Object.entries(elements || {}).map(([id, elem]) => {
|
||||
const def = ELEMENTS[id];
|
||||
return (
|
||||
<div
|
||||
|
||||
Reference in New Issue
Block a user