Skip to content

Commit

Permalink
fix(query-preview): add a missing coma
Browse files Browse the repository at this point in the history
  • Loading branch information
lauramargar committed Jan 17, 2024
1 parent 4ecb9a6 commit 7c4f689
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@ export const fetchAndSaveQueryPreview: QueriesPreviewXStoreModule['actions']['fe
results: response?.results ?? [],
status: 'success',
totalResults: response?.totalResults ?? 0,
instances: 1
displayTagging: response?.displayTagging ?? undefined,

instances: 1,
displayTagging: response?.displayTagging ?? undefined
});
})
.catch(error => {
Expand Down

0 comments on commit 7c4f689

Please sign in to comment.