Skip to content

Commit f4f1425

Browse files
committed
bun format
1 parent 3566dc1 commit f4f1425

File tree

1 file changed

+3
-2
lines changed
  • packages/gitbook/src/components/Ads

1 file changed

+3
-2
lines changed

packages/gitbook/src/components/Ads/Ad.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ export function Ad({
7979
const showPlaceholderAd =
8080
previewParam === 'placeholder' ||
8181
(siteAdsStatus &&
82-
(siteAdsStatus === SiteAdsStatus.Pending || siteAdsStatus === SiteAdsStatus.InReview))
82+
(siteAdsStatus === SiteAdsStatus.Pending ||
83+
siteAdsStatus === SiteAdsStatus.InReview));
8384

8485
if (!realZoneId) {
8586
return;
@@ -91,7 +92,7 @@ export function Ad({
9192
ignore: ignore || preview,
9293
zoneId: realZoneId,
9394
mode,
94-
source: showPlaceholderAd ? 'placeholder' : 'live'
95+
source: showPlaceholderAd ? 'placeholder' : 'live',
9596
});
9697

9798
if (cancelled) {

0 commit comments

Comments
 (0)