@myvillage/cli 1.8.4 → 1.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myvillage/cli",
3
- "version": "1.8.4",
3
+ "version": "1.8.5",
4
4
  "description": "MyVillageOS CLI for community developers",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1398,7 +1398,7 @@ export default function AgentChat() {
1398
1398
  <div className="agent-chat-messages">
1399
1399
  {messages.length === 0 && <p style={{ color: '#999' }}>Ask the agent anything about your village...</p>}
1400
1400
  {messages.map((msg, i) => (
1401
- <div key={i} className={`message ${msg.role}`}>
1401
+ <div key={i} className={\`message \${msg.role}\`}>
1402
1402
  <strong>{msg.role === 'user' ? 'You' : 'Agent'}:</strong> {msg.text}
1403
1403
  </div>
1404
1404
  ))}