Skip to content

Commit

Permalink
style: fix indenting
Browse files Browse the repository at this point in the history
  • Loading branch information
ajohn25 committed Aug 11, 2023
1 parent fd1e938 commit 95d1240
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions __test__/testbed-preparation/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -556,15 +556,15 @@ export const assignContacts = async (
) => {
await client.query(
`
update campaign_contact
set assignment_id = $1
where id in (
select id from campaign_contact
where campaign_id = $2
and assignment_id is null
limit $3
)
`,
update campaign_contact
set assignment_id = $1
where id in (
select id from campaign_contact
where campaign_id = $2
and assignment_id is null
limit $3
)
`,
[assignmentId, campaignId, count]
);
};

0 comments on commit 95d1240

Please sign in to comment.