Skip to content

Commit

Permalink
fixup!
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul committed Oct 22, 2024
1 parent 392d54a commit 338483d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 15 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
"style-loader": "3.3.1",
"traverse": "0.6.6",
"ts-loader": "9.4.2",
"typescript": "5.0.4",
"typescript": "5.6.3",
"unorm": "1.6.0",
"webpack": "5.95.0",
"webpack-bundle-analyzer": "4.4.2",
Expand Down
6 changes: 2 additions & 4 deletions react/features/app/components/AbstractApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,9 @@ export interface IProps {
*/
export class AbstractApp<P extends IProps = IProps> extends BaseApp<P> {
/**
* The deferred for the initialisation {{promise, resolve, reject}}.
* The deferred for the initialization {{promise, resolve, reject}}.
*/
_init: {
promise: Promise<any>;
};
declare _init: PromiseWithResolvers<{}>;

/**
* Initializes the app.
Expand Down
2 changes: 1 addition & 1 deletion react/features/base/ui/components/native/IconButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const IconButton: React.FC<IIconButtonProps> = ({
underlayColor = { underlayColor }>
<Icon
color = { color }
size = { 20 || size }
size = { size ?? 20 }
src = { src } />
</TouchableHighlight>
);
Expand Down
2 changes: 1 addition & 1 deletion react/features/calendar-sync/web/microsoftCalendar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export const microsoftCalendarApi = {
userSigninName: tokenParts.userSigninName
}));

signInDeferred.resolve();
signInDeferred.resolve(undefined);
}

window.addEventListener('message', handleAuth);
Expand Down

0 comments on commit 338483d

Please sign in to comment.