diff --git a/README.md b/README.md
index 950676f..72a29f7 100644
--- a/README.md
+++ b/README.md
@@ -58,3 +58,20 @@ session에 있는 role 키로 구분한다
session.role === 'Partner'
- 이외의 경우 -> 굳이 체크할 필요 없어보임\
session.role === 'User'
+
+
+# 지붕재 적합성 TODO
+
+```
+const suitableCheck = (value: string) => {
+ if (value === '×') {
+ return
+ } else if (value === 'ー') {
+ return
+ } else {
+ return
+ }
+ }
+```
+
+- 추후 지붕재 적합성 데이터 CUD 구현 시 ×, ー 데이터 관리 필요
diff --git a/src/components/suitable/SuitableList.tsx b/src/components/suitable/SuitableList.tsx
index e5a21c6..ce7485c 100644
--- a/src/components/suitable/SuitableList.tsx
+++ b/src/components/suitable/SuitableList.tsx
@@ -13,6 +13,7 @@ export default function SuitableList() {
selectedItems.some((selected) => selected === itemId) ? removeSelectedItem(itemId) : addSelectedItem(itemId)
}
+ // TODO: 추후 지붕재 적합성 데이터 CUD 구현 시 ×, ー 데이터 관리 필요
const suitableCheck = (value: string) => {
if (value === '×') {
return