Skip to content
This repository has been archived by the owner on Nov 15, 2020. It is now read-only.

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
wschella committed Mar 28, 2018
1 parent 0c31a65 commit 3cc757d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion planetwars/client/app/utils/Database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function bindToStore(store: any): Promise<void> {
maps: {},
notifications: [],
}).write())
.then((db) => {
.then((db: DbSchemaV2) => {
if (db.version !== 'v2') {
return migrateOld(db);
}
Expand Down
2 changes: 1 addition & 1 deletion planetwars/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
"tslint-eslint-rules": "^5.1.0",
"tslint-loader": "^3.6.0",
"tslint-react": "^3.5.1",
"typescript": "^2.4.1",
"typescript": "^2.8.1",
"url-loader": "^0.6.1",
"webpack": "^3.3.0",
"webpack-dev-middleware": "^1.9.0",
Expand Down

0 comments on commit 3cc757d

Please sign in to comment.