Skip to content

Commit ded80b5

Browse files
authored
Merge pull request #306 from opengovern/ui-changes
fix: typo
2 parents dbf3a96 + 50f0baf commit ded80b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/webui/src/pages/AI/chat/AIChat.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function AIChat({ setOpen, }: any) {
1111
const [message, setMessage] = useState('')
1212
const agent = JSON.parse(localStorage.getItem('agent') as string)
1313
const [chats, setChats] = useState<ChatList>(
14-
agent?.id == 'devop' ? DEVOPS : IDENTITY
14+
agent?.id == 'devops' ? DEVOPS : IDENTITY
1515
)
1616

1717
const lastMessageRef = useRef(null)

0 commit comments

Comments
 (0)