🚸 (bot) Update reply if we get new format from backend

This commit is contained in:
Baptiste Arnaud
2023-08-07 15:22:05 +02:00
parent ec0a5be793
commit af1bee8756
12 changed files with 94 additions and 18 deletions

View File

@@ -0,0 +1,5 @@
import { createSignal } from 'solid-js'
export const [formattedMessages, setFormattedMessages] = createSignal<
{ inputId: string; formattedMessage: string }[]
>([])