Add name property to Message type

This commit is contained in:
n4ze3m
2024-02-01 23:48:40 +05:30
parent 0aa4aefb08
commit ca84cc3b64
13 changed files with 258 additions and 248 deletions

View File

@@ -2,6 +2,7 @@ import { create } from "zustand"
export type Message = {
isBot: boolean
name: string
message: string
sources: any[]
}