@dbx-tools/ui-teams 0.6.72 → 0.6.74
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 +5 -5
- package/src/react/teams-chat.tsx +1 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"repository": {
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/reggie-db/dbx-tools.git",
|
|
6
|
-
"directory": "packages/ui/teams"
|
|
6
|
+
"directory": "js-packages/ui/teams"
|
|
7
7
|
},
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "projen build",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"typescript": "^5.9.3"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@dbx-tools/shared-core": "0.6.
|
|
28
|
-
"@dbx-tools/shared-teams": "0.6.
|
|
29
|
-
"@dbx-tools/ui-appkit": "0.6.
|
|
27
|
+
"@dbx-tools/shared-core": "0.6.74",
|
|
28
|
+
"@dbx-tools/shared-teams": "0.6.74",
|
|
29
|
+
"@dbx-tools/ui-appkit": "0.6.74",
|
|
30
30
|
"adaptivecards": "^3.0.5",
|
|
31
31
|
"marked": "^18.0.5",
|
|
32
32
|
"react": "^19.2.4",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"version": "0.6.
|
|
39
|
+
"version": "0.6.74",
|
|
40
40
|
"type": "module",
|
|
41
41
|
"exports": {
|
|
42
42
|
"./react": "./src/react/index.ts",
|
package/src/react/teams-chat.tsx
CHANGED
|
@@ -130,7 +130,7 @@ export const TeamsChat = ({
|
|
|
130
130
|
if ((err as Error)?.name === "AbortError") return;
|
|
131
131
|
setError((err as Error).message);
|
|
132
132
|
} finally {
|
|
133
|
-
setPending(false);
|
|
133
|
+
if (abortRef.current === controller) setPending(false);
|
|
134
134
|
}
|
|
135
135
|
},
|
|
136
136
|
[agentId, endpoint, pending, userName],
|