diff --git a/src/components/blocks/CheckItem.tsx b/src/components/blocks/CheckItem.tsx
index d9fa713..1dc615d 100644
--- a/src/components/blocks/CheckItem.tsx
+++ b/src/components/blocks/CheckItem.tsx
@@ -3,7 +3,7 @@ import React, { useState } from "react"
import styled from "styled-components"
import { GenerateBlocks, supportedTypes } from "../GenerateBlocks"
import { LinkBlock } from "./LinkBlock"
-import { CheckIcon, DownIcon, NAIcon, WarningIcon } from "../icons/EQCIcons"
+import { CheckIcon, DownIcon, WarningIcon } from "../icons/EQCIcons"
import { CheckItemBlockInterface } from "../../models"
/**
@@ -73,7 +73,7 @@ const useSwitchStatus = (status?: string) => {
return
case 'NA':
- return
+ return null // No icon for NA
default:
return
}
diff --git a/src/components/icons/EQCIcons.tsx b/src/components/icons/EQCIcons.tsx
index 5ed7f84..cde6768 100644
--- a/src/components/icons/EQCIcons.tsx
+++ b/src/components/icons/EQCIcons.tsx
@@ -13,14 +13,6 @@ export const WarningIcon = () => (
)
-export const NAIcon = () => (
-
-)
-
export const DownIcon = () => (