Skip to content

Commit 4c8b1f9

Browse files
committed
fix: make fullWidthResponsive ad property not mandatory
1 parent 3841b75 commit 4c8b1f9

File tree

1 file changed

+2
-3
lines changed
  • web/src/modules/shared/components/client/ads

1 file changed

+2
-3
lines changed

web/src/modules/shared/components/client/ads/AdSlots.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@ const AdTemplate = ({
3737
className,
3838
adSlot,
3939
adFormat = 'auto',
40-
fullWidthResponsive = 'true',
4140
adLayoutKey,
41+
fullWidthResponsive,
4242
hiddenClassName = 'hidden',
4343
showCloseButton = true,
4444
}: {
4545
className: string;
4646
adSlot: string;
4747
adFormat: string;
48-
fullWidthResponsive: string;
4948
adLayoutKey?: string;
49+
fullWidthResponsive?: string;
5050
hiddenClassName?: string;
5151
showCloseButton?: boolean;
5252
}) => {
@@ -157,7 +157,6 @@ export const MultiplexAdSlot = ({ className }: { className?: string }) => {
157157
)}
158158
adSlot='6673081563'
159159
adFormat='autorelaxed'
160-
fullWidthResponsive='false'
161160
showCloseButton={true}
162161
/>
163162
);

0 commit comments

Comments
 (0)