Skip to content

Commit

Permalink
update usage of Promise.all to follow typescript 4.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pankona committed Nov 25, 2021
1 parent 8a567c4 commit 45b803f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hashira-web/src/App.tsx
Expand Up @@ -44,7 +44,7 @@ const App: React.VFC = () => {
return;
}

Promise.all<string[], any>([
Promise.all([
firebase.fetchAccessTokens(user.uid),
firebase.fetchTaskAndPriorities(user.uid),
]).then(([accesstokens, tasksAndPriorities]) => {
Expand Down

0 comments on commit 45b803f

Please sign in to comment.