Skip to content

Commit

Permalink
Add logs
Browse files Browse the repository at this point in the history
  • Loading branch information
bibicollins1 committed Dec 11, 2024
1 parent 0e32678 commit d23a81e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export const InlineNewsletterPuff = ({

if (isLoading || !newsletter) {
return (
<InpContainer>
<Placeholder />
<InpContainer id="INP CONTAINER InlineNewsletterPuff.tsx">
<Placeholder data-testid="PLACEHOLDER InlineNewsletterPuff.tsx"/>
</InpContainer>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ export const Newsletter = ({
);
return (
<React.Fragment>
<InpContainer section={section}>
{loading && <LoadingOverlay />}
<InpContainer section={section} id="INPCONTAINER Newsletter.tsx">
{loading && <LoadingOverlay data-testid="LOADINGOVERLAY Newsletters.tsx"/>}
{!error &&
justSubscribed && (
<InpSubscribedContainer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const PreviewNewsletterPuff = ({
headline,
section
}: PreviewNewsletterPuffProps) => (
<InpContainer section={section}>
<InpContainer section={section} id="INPCONTAINER PreviewNewsletterPuff.tsx">
<InpSignupContainer>
<InpCopy>
<InpSignupHeadline>{headline} </InpSignupHeadline>
Expand Down

0 comments on commit d23a81e

Please sign in to comment.