Skip to content

Commit 03dc153

Browse files
committed
Fix review points
1 parent b9cf74f commit 03dc153

11 files changed

Lines changed: 8 additions & 7 deletions

File tree

-237 Bytes
Loading

__tests__/html2/activity/collapsible.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@
279279
{
280280
...aiMessageEntity,
281281
keywords: ['Collapsible'],
282-
abstract: 'This is multiple lines text in absstract which is used to describe the content of the message.',
282+
abstract: 'This is multiple lines text in abstract which is used to describe the content of the message.',
283283
isBasedOn: {
284284
'@type': 'SoftwareSourceCode',
285285
programmingLanguage: 'python',
@@ -305,7 +305,7 @@
305305
entities: [
306306
{
307307
...aiMessageEntity,
308-
abstract: 'This is multiple lines text in absstract which is used to describe the content of the message.',
308+
abstract: 'This is multiple lines text in abstract which is used to describe the content of the message.',
309309
isBasedOn: {
310310
'@type': 'SoftwareSourceCode',
311311
programmingLanguage: 'python',
-64 Bytes
Loading
-253 Bytes
Loading
-255 Bytes
Loading
-239 Bytes
Loading
388 Bytes
Loading
214 Bytes
Loading

packages/api/src/decorator/ActivityBorder/private/ActivityBorderDecoratorRequestContext.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ type ActivityBorderDecoratorRequestContextType = Readonly<{
88
const ActivityBorderDecoratorRequestContext = createContext<ActivityBorderDecoratorRequestContextType>(
99
Object.freeze({
1010
request: Object.freeze({
11-
livestreamingState: undefined,
12-
from: undefined
11+
from: undefined,
12+
livestreamingState: undefined
1313
})
1414
})
1515
);

packages/bundle/src/module/exports-minimal.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { StrictStyleOptions, StyleOptions } from 'botframework-webchat-api';
22
import * as apiDecorator from 'botframework-webchat-api/decorator';
3-
import * as compoonentDecorator from 'botframework-webchat-component/decorator';
3+
import * as componentDecorator from 'botframework-webchat-component/decorator';
44
import * as internal from 'botframework-webchat-component/internal';
55
import { Constants, createStore, createStoreWithDevTools, createStoreWithOptions } from 'botframework-webchat-core';
66

@@ -55,7 +55,7 @@ export default ReactWebChat;
5555

5656
const decorator = Object.freeze({
5757
...apiDecorator,
58-
...compoonentDecorator
58+
...componentDecorator
5959
});
6060

6161
export {

0 commit comments

Comments
 (0)