Skip to content

Commit

Permalink
chore(release): 4.1.9 (#716)
Browse files Browse the repository at this point in the history
* Feature: History items ttl (#677)

* Fix: add fallback texts to placeholder text (#690)

* Task: Reduce padding/spacing on request header  (#696)

* Task: removes depracated setConsent method (#703)

* chore(release): 4.1.9

Co-authored-by: OfficeGlobal <47977325+OfficeGlobal@users.noreply.github.com>
Co-authored-by: OfficeGlobal <OfficeGlobal@microsoft.com>
Co-authored-by: Azure Static Web Apps <opensource@microsoft.com>
Co-authored-by: Elinor <ekaguongo@gmail.com>
  • Loading branch information
5 people committed Sep 29, 2020
1 parent 07ecf09 commit a292351
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graph-explorer-v2",
"version": "4.1.8",
"version": "4.1.9",
"private": true,
"dependencies": {
"@babel/core": "7.2.2",
Expand Down Expand Up @@ -83,7 +83,7 @@
"build": "node scripts/build.js && node versioned-build.js",
"test": "node scripts/test.js",
"lint": "tslint --project tsconfig.json -c tslint.json",
"bump": "standard-version --skip.tag"
"bump": "standard-version --skip.tag --skip.changelog"
},
"eslintConfig": {
"extends": "react-app"
Expand Down
9 changes: 2 additions & 7 deletions src/app/views/authentication/Authentication.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@ export class Authentication extends Component<IAuthenticationProps, { loginInPro
}: any = this.props;
this.setState({ loginInProgress: true });

const { mscc } = (window as any);

if (mscc) {
mscc.setConsent();
}

try {
const authResponse = await logIn();
if (authResponse) {
Expand Down Expand Up @@ -110,7 +104,8 @@ function mapDispatchToProps(dispatch: Dispatch): object {
return {
actions: bindActionCreators({
...authActionCreators,
...queryStatusActionCreators},
...queryStatusActionCreators
},
dispatch)
};
}
Expand Down

0 comments on commit a292351

Please sign in to comment.