diff --git a/src/pages/v2-pre/stigmata-sets/[stigmataSetId].tsx b/src/pages/v2-pre/stigmata-sets/[stigmataSetId].tsx
index b23691e3..c4c25532 100644
--- a/src/pages/v2-pre/stigmata-sets/[stigmataSetId].tsx
+++ b/src/pages/v2-pre/stigmata-sets/[stigmataSetId].tsx
@@ -3,9 +3,8 @@ import { Box, Card, Flex, Heading, Link } from 'theme-ui'
import FormattedText from '../../../components/v2-pre/FormattedText'
import { formatSubSkillInfo } from '../../../lib/v2-pre/data/formatText'
import { loadStigmaData, loadStigmataSetCatalog, loadStigmataSetData } from '../../../lib/v2-pre/server/loadData'
-import { RootStigma, SkillTagItem, StigmataSet } from '../../../lib/v2-pre/data/types'
+import { RootStigma, StigmataSet } from '../../../lib/v2-pre/data/types'
import { Fragment } from 'react'
-import TagIcon from '../../../components/v2-pre/TagIcon'
import StigmaIcon from '../../../components/v2-pre/StigmaIcon'
import StigmaFigureImage from '../../../components/v2-pre/StigmaFigureImage'
@@ -177,11 +176,3 @@ export async function getStaticPaths() {
fallback: false
}
}
-
-interface SkillTagBoxProps {
- tag: SkillTagItem
-}
-
-const SkillTagItem = ({ tag }: SkillTagBoxProps) => {
- return
-}
diff --git a/src/pages/v2-pre/stigmata/[stigmaId].tsx b/src/pages/v2-pre/stigmata/[stigmaId].tsx
index 2dccd2af..5f13b901 100644
--- a/src/pages/v2-pre/stigmata/[stigmaId].tsx
+++ b/src/pages/v2-pre/stigmata/[stigmaId].tsx
@@ -3,9 +3,8 @@ import { Box, Card, Flex, Heading, Link } from 'theme-ui'
import FormattedText from '../../../components/v2-pre/FormattedText'
import { formatSubSkillInfo, replaceNewLine } from '../../../lib/v2-pre/data/formatText'
import { loadStigmaData, loadStigmataCatalog, loadStigmataSetData } from '../../../lib/v2-pre/server/loadData'
-import { RootStigma, SkillTagItem, StigmataSetCatalogItem } from '../../../lib/v2-pre/data/types'
+import { RootStigma, StigmataSetCatalogItem } from '../../../lib/v2-pre/data/types'
import { Fragment } from 'react'
-import TagIcon from '../../../components/v2-pre/TagIcon'
import { getStigmaTypeLabel } from '../../../lib/v2-pre/data/text'
import StigmaTypeIcon from '../../../components/v2-pre/StigmaTypeIcon'
import StigmaIcon from '../../../components/v2-pre/StigmaIcon'
@@ -165,11 +164,3 @@ export async function getStaticPaths() {
fallback: false
}
}
-
-interface SkillTagBoxProps {
- tag: SkillTagItem
-}
-
-const SkillTagItem = ({ tag }: SkillTagBoxProps) => {
- return
-}
diff --git a/src/pages/v2-pre/weapons/[weaponId].tsx b/src/pages/v2-pre/weapons/[weaponId].tsx
index b3c8c484..8be92cae 100644
--- a/src/pages/v2-pre/weapons/[weaponId].tsx
+++ b/src/pages/v2-pre/weapons/[weaponId].tsx
@@ -3,9 +3,8 @@ import { Box, Card, Flex, Heading } from 'theme-ui'
import FormattedText from '../../../components/v2-pre/FormattedText'
import { formatSubSkillInfo, replaceNewLine } from '../../../lib/v2-pre/data/formatText'
import { loadWeaponCatalog, loadWeaponData } from '../../../lib/v2-pre/server/loadData'
-import { RootWeaponData, SkillTagItem } from '../../../lib/v2-pre/data/types'
+import { RootWeaponData } from '../../../lib/v2-pre/data/types'
import { Fragment } from 'react'
-import TagIcon from '../../../components/v2-pre/TagIcon'
import { getWeaponTypeLabel } from '../../../lib/v2-pre/data/text'
import WeaponTypeIcon from '../../../components/v2-pre/WeaponTypeIcon'
import WeaponIcon from '../../../components/v2-pre/WeaponIcon'
@@ -105,11 +104,3 @@ export async function getStaticPaths() {
fallback: false
}
}
-
-interface SkillTagBoxProps {
- tag: SkillTagItem
-}
-
-const SkillTagItem = ({ tag }: SkillTagBoxProps) => {
- return
-}