@typed-assistant/builder 0.0.43 → 0.0.44
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 +1 -1
- package/src/setupWebserver.tsx +1 -1
package/package.json
CHANGED
package/src/setupWebserver.tsx
CHANGED
|
@@ -162,7 +162,7 @@ export const startWebappServer = async ({
|
|
|
162
162
|
.ws("/ws", {
|
|
163
163
|
response: t.String(),
|
|
164
164
|
async open(ws) {
|
|
165
|
-
ws.send("Connected successfully. Awaiting messages...")
|
|
165
|
+
ws.send(lastMessage || "Connected successfully. Awaiting messages...")
|
|
166
166
|
subscribers.set(ws.id, (message) => {
|
|
167
167
|
ws.send(message)
|
|
168
168
|
})
|