# InsuWiki 빌드 에러 수정 — dashboard_insight TIER_MAP 누락

## Lv.1 작업 (긴급)

## 에러
```
./src/lib/constants.ts:29:7
Type error: Property 'dashboard_insight' is missing in type ... but required in type 'Record<SourceType, number>'.
```

## 수정
`/home/jay/projects/insuwiki/nextapp/src/lib/constants.ts` 29줄의 `TIER_MAP`에 `dashboard_insight` 추가:

```typescript
const TIER_MAP: Record<SourceType, number> = {
  policy_pdf: 1,
  regulation: 1.5,
  newsletter: 2,
  court_ruling: 1,
  wiki_editorial: 3,
  kakao_expert: 2.5,
  kakao_community: 4,
  youtube: 3,
  user_submitted: 4,
  dashboard_insight: 3,  // ← 추가
};
```

## 수정 후
```bash
cd /home/jay/projects/insuwiki/nextapp && npm run build
cd /home/jay/projects/insuwiki && git add -A && git commit -m "fix: add dashboard_insight to TIER_MAP" && git push origin master
```

## 보고서
`/home/jay/workspace/memory/reports/task-{TASK_ID}.md`