diff --git a/components/about/ContentUpdate/index.tsx b/components/about/ContentUpdate/index.tsx
index 26b62d68..39f6cc78 100644
--- a/components/about/ContentUpdate/index.tsx
+++ b/components/about/ContentUpdate/index.tsx
@@ -18,6 +18,7 @@ interface Props {
newItems?: UpdateObject
uncappedItems?: UpdateObject
transcendedItems?: UpdateObject
+ awakenedItems?: string[]
raidItems?: string[]
numNotes: number
}
@@ -28,6 +29,7 @@ const ContentUpdate = ({
newItems,
uncappedItems,
transcendedItems,
+ awakenedItems,
raidItems,
numNotes,
}: Props) => {
@@ -155,6 +157,31 @@ const ContentUpdate = ({
return section
}
+ function awakenedItemElements() {
+ let elements: React.ReactNode[] = []
+ if (awakenedItems) {
+ elements = awakenedItems.map((id) => {
+ return {updates(`labels.awakened.weapons`)}
+