From b464fdd84226ad1cd557dd14898a0a59a75d15ee Mon Sep 17 00:00:00 2001 From: Ian Krieger <48930920+IanKrieger@users.noreply.github.com> Date: Thu, 1 Aug 2024 13:48:17 -0400 Subject: [PATCH] fix: remove outer container that had conversion alert in it (#1297) Alert was removed, but the container was not. Fix related to: https://github.com/brave/ads-ui/pull/1292 --- src/user/views/user/CampaignView.tsx | 34 +++++++++++++--------------- 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/src/user/views/user/CampaignView.tsx b/src/user/views/user/CampaignView.tsx index b940d776..c5b91e79 100644 --- a/src/user/views/user/CampaignView.tsx +++ b/src/user/views/user/CampaignView.tsx @@ -38,24 +38,22 @@ export function CampaignView() { return ( - - Campaigns} - sx={{ - flexGrow: 1, - overflowX: "auto", - }} - additionalAction={} - > - {!loading ? ( - - ) : ( - - - - )} - - + Campaigns} + sx={{ + flexGrow: 1, + overflowX: "auto", + }} + additionalAction={} + > + {!loading ? ( + + ) : ( + + + + )} + ); }