Skip to content

Commit

Permalink
Fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
4ian committed Jan 30, 2019
1 parent 08ddb6e commit b85008c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion newIDE/app/src/Utils/GDevelopServices/Release.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ export const getReleases = (): Promise<Array<Release>> => {
};

export const hasBreakingChange = (release: Release): boolean => {
return (release.description || '').toLowerCase().indexOf('breaking change') !== -1;
return (
(release.description || '').toLowerCase().indexOf('breaking change') !== -1
);
};

export const findRelease = (
Expand Down
3 changes: 1 addition & 2 deletions newIDE/app/src/fixtures/GDevelopServicesTestData.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,5 @@ export const releaseWithoutDescription: Release = {
name: '5.0.0-beta60',
publishedAt: '2019-01-07T23:32:41Z',
url: 'https://github.com/4ian/GDevelop/releases/tag/v5.0.0-beta60',
description:
null,
description: null,
};

0 comments on commit b85008c

Please sign in to comment.