Skip to content

Commit

Permalink
Merge pull request #7170 from google/enhancement/6875-fix-ads-convers…
Browse files Browse the repository at this point in the history
…ion-view-condition
  • Loading branch information
aaemnnosttv authored Jun 15, 2023
2 parents 468e9d7 + 35ec076 commit 367b984
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ export default function OptionalSettingsView() {

const showAdsConversionIDSettings =
canUseSnippet &&
( useSnippet || ( ga4ReportingEnabled && useGA4Snippet ) );
( ga4ReportingEnabled
? ( isUAConnected && useSnippet ) || useGA4Snippet
: useSnippet );

return (
<Fragment>
Expand Down

0 comments on commit 367b984

Please sign in to comment.