(type)
| 266 | } |
| 267 | |
| 268 | function getNoteTypeInfo(type) { |
| 269 | const types = { |
| 270 | warning: { emoji: "⚠️", color: "#FF6B6B" }, |
| 271 | positive: { emoji: "✅", color: "#51CF66" }, |
| 272 | neutral: { emoji: "📝", color: "#74C0FC" }, |
| 273 | alert: { emoji: "🚨", color: "#FFD43B" } |
| 274 | }; |
| 275 | |
| 276 | return types[type] || types.neutral; |
| 277 | } |
no outgoing calls
no test coverage detected