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

Commit

Permalink
Fix typescript error
Browse files Browse the repository at this point in the history
Summary: It errors on [github actions](https://github.com/facebook/flipper/actions/runs/11956118342/job/33330114098#step:7:59) but not internally 0_o

Reviewed By: lblasa

Differential Revision: D66362868

fbshipit-source-id: c039bb4db1db6aeec4d08bdf45715fe0a7c82bc2
  • Loading branch information
antonk52 authored and facebook-github-bot committed Nov 22, 2024
1 parent 494616a commit cd799c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ test('DataSource handles updates', () => {
key: 'id',
indices: [['method'], ['status']],
});
const customColumns = [];
const customColumns: Parameters<typeof createRequestFromRequestInfo>[1] = [];

requests.upsert(createRequestFromRequestInfo(firstRequest, customColumns));
requests.upsert(createRequestFromRequestInfo(secondRequest, customColumns));
Expand Down

0 comments on commit cd799c0

Please sign in to comment.