diff --git a/src/components/avatarBar/index.tsx b/src/components/avatarBar/index.tsx
index 0bc63fb..550c6c9 100644
--- a/src/components/avatarBar/index.tsx
+++ b/src/components/avatarBar/index.tsx
@@ -69,7 +69,7 @@ export default function AvatarBar({ onClose }: { onClose?: () => void }) {
/>
- {Object.entries(damageType).map(([key, value]) => (
+ {Object.entries(damageType).filter(([key]) => key !== "").map(([key, value]) => (
{
@@ -92,7 +92,7 @@ export default function AvatarBar({ onClose }: { onClose?: () => void }) {
- {Object.entries(baseType).map(([key, value]) => (
+ {Object.entries(baseType).filter(([key]) => key !== "").map(([key, value]) => (
{
diff --git a/src/components/importBar/copy.tsx b/src/components/importBar/copy.tsx
index 44a7917..0dff700 100644
--- a/src/components/importBar/copy.tsx
+++ b/src/components/importBar/copy.tsx
@@ -147,7 +147,7 @@ export default function CopyImport() {
{/* Path */}
- {Object.entries(baseType).map(([key, value]) => (
+ {Object.entries(baseType).filter(([key]) => key !== "").map(([key, value]) => (
{
@@ -174,7 +174,7 @@ export default function CopyImport() {
{/* Element */}
- {Object.entries(damageType).map(([key, value]) => (
+ {Object.entries(damageType).filter(([key]) => key !== "").map(([key, value]) => (
{
diff --git a/src/components/lightconeBar/index.tsx b/src/components/lightconeBar/index.tsx
index cd4bfad..bda9d2c 100644
--- a/src/components/lightconeBar/index.tsx
+++ b/src/components/lightconeBar/index.tsx
@@ -75,7 +75,7 @@ export default function LightconeBar() {
Filter
- {Object.entries(baseType).map(([key, value]) => (
+ {Object.entries(baseType).filter(([key]) => key !== "").map(([key, value]) => (
{