Skip to content

Commit

Permalink
chore(deps): update dependency node to v18.18.1 (#932)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency node to v18.18.1

* fix: change order

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Ian Krieger <iandkrieger@gmail.com>
  • Loading branch information
renovate[bot] and IanKrieger authored Oct 12, 2023
1 parent 74fd4e7 commit cafd27c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.18.0
18.18.1
22 changes: 11 additions & 11 deletions src/user/campaignList/CampaignList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,17 +129,6 @@ export function CampaignList({
if (advertiser?.selfServiceManageCampaign) {
initialSort += 2;
columns.unshift(
{
title: "On/Off",
value: (c) => c.state,
extendedRenderer: (r) =>
campaignOnOffState({
...r,
advertiserId: advertiser?.id ?? "",
}),
sx: { width: "1px", p: 0 },
sortable: false,
},
{
title: "",
value: (c) => c.id,
Expand All @@ -154,6 +143,17 @@ export function CampaignList({
align: "center",
sx: { width: "1px" },
},
{
title: "On/Off",
value: (c) => c.state,
extendedRenderer: (r) =>
campaignOnOffState({
...r,
advertiserId: advertiser?.id ?? "",
}),
sx: { width: "1px", p: 0 },
sortable: false,
},
);
}

Expand Down

0 comments on commit cafd27c

Please sign in to comment.